Day 20 part 1

This was pretty much just day 18 again, but without doors and with an input data parsing skill check. I simplified day 18 and went with a basic Dijkstra algorithm after the DFS to crawl the maze which solved this just fine.

Part 2 is...ugh.
This commit is contained in:
2022-06-22 16:49:36 -05:00
parent c4faba7636
commit 23a75d8f95
6 changed files with 560 additions and 0 deletions

View File

@ -53,6 +53,7 @@ var dayMap = []day{
&days.Day17{},
&days.Day18{},
&days.Day19{},
&days.Day20{},
}
func main() {