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

View File

@ -57,6 +57,7 @@ var dayMap = []day{
&days.Day21{},
&days.Day22{},
&days.Day23{},
&days.Day24{},
}
func main() {