Day 6 solution

I'm reasonably happy with this. I started with a bi-directional linked list, but realized that a flat list of all nodes came in handy for one use case while the linked list came in handy for another, so I settled on that.
This commit is contained in:
2022-06-14 09:21:10 -05:00
parent acef5fdc12
commit c8878ffbce
6 changed files with 1164 additions and 0 deletions

View File

@ -36,6 +36,7 @@ var dayMap = []day{
&days.Day03{},
&days.Day04{},
&days.Day05{},
&days.Day06{},
}
func main() {