JLJVS / AdventofCode

Advent of Code solutions for several years
0 stars 0 forks source link

Refactor Advent of Code 2022 day 19 #1

Closed JLJVS closed 3 months ago

JLJVS commented 3 months ago

Current implementation of a BFS is too slow, so refactor the solution to implement a DFS approach.

JLJVS commented 3 months ago

Created a solution heavily inspired by https://github.com/hyper-neutrino/advent-of-code/blob/main/2022/day19p2.py . Could not get the depth first search to work correctly on my own. Should try again at a later date.