adventofcode

Maravedis 2024-12-29T21:35:20.822709Z

2016 day 11 be like:

; part1
(time (solve path false)) ; 114ms. Stumbled onto a good heuristic?
; part2
(time (solve path true)) ; 2min. I seriously do not know what I'm doing

tildedave 2024-12-30T21:17:00.143379Z

I remember the parsing being really annoying on that one

Maravedis 2024-12-31T09:32:22.227539Z

That really wasn't my problem. I actually found none of the good optimization I read about in the solution thread. I just... put everything in an a-star and fiddled with the heuristic until I per chance landed on one that could solve part2. It's not a great approach to solving puzzles x)