From 464f462b89b0e8cfe380bbb2bd6b29bc898f69f9 Mon Sep 17 00:00:00 2001 From: Daniel Weber Date: Wed, 11 Dec 2024 07:02:57 -0500 Subject: [PATCH] Part 1 done, part 2 not done --- 2024/day11/main.py | 62 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 2024/day11/main.py diff --git a/2024/day11/main.py b/2024/day11/main.py new file mode 100644 index 0000000..527d54f --- /dev/null +++ b/2024/day11/main.py @@ -0,0 +1,62 @@ +from contextlib import contextmanager +import sys +import os +sys.path.insert(1, os.path.abspath('../../')) +from python_tools.aoc_utils import * + +G = {} + +def blink_rocks(r): + if r == 0: + return [1] + elif len(str(r)) % 2 == 0: + l = int(len(str(r)) / 2) + return [int(str(r)[:l]), int(str(r)[l:])] + else: + return [r*2024] + +def blink_rocksp2(r): + if r not in G: + x = [r] + for i in range(3): + nx = [] + for j in x: + nx.extend(blink_rocks(j)) + x = nx + G[r] = x + return G[r] + +def part_one(stones): + x = stones + for i in range(25): + nx = [] + for j in x: + nx.extend(blink_rocks(j)) + x = nx + print("Part One: ", len(x)) + +STONES = set() + +def part_two(stones): + x = stones + for i in range(25): + print(i) + nx = [] + for j in x: + nx.extend(blink_rocks(j)) + for i in nx: + STONES.add(i) + x = nx + print("Len_stones: ", len(STONES)) + + print("Part Two: ", len(x)) + +def main(): + f = open("input.txt", "r") + contents = list(map(int, f.read().strip().split())) + part_one(contents) + part_two(contents) + +if __name__ == "__main__": + main() +