Day 24 solution

This one was pretty straightforward and completes the "Game of Life" AoC bingo square. Part 2 felt a little tedious insofar as there wasn't much problem solving to do, just push the part 1 solution into a map/dictionary and implement the new adjacency logic per the spec.
This commit is contained in:
2022-07-21 09:37:39 -05:00
parent 7e4b44a3b6
commit a723fc113a
5 changed files with 305 additions and 0 deletions

5
inputs/24p.txt Normal file
View File

@ -0,0 +1,5 @@
.#.##
...#.
....#
.#...
..#..

5
inputs/24s1.txt Normal file
View File

@ -0,0 +1,5 @@
....#
#..#.
#..##
..#..
#....

5
inputs/24s2.txt Normal file
View File

@ -0,0 +1,5 @@
.....
.....
.....
#....
.#...