My Advent of Code solutions in Python. kevinyap.ca/2019/12/going-fast-in-advent-of-code/
advent-of-code python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update day24.py

+1 -1
+1 -1
2019/day24.py
··· 62 62 for minutes in range(200): 63 63 new_board = {} 64 64 65 - for z in range(-201, 201): 65 + for z in range(-(minutes + 1), minutes + 2): 66 66 for y in range(5): 67 67 for x in range(5): 68 68 if x == 2 and y == 2: