Peter Warnock @peterwarnock.com · Dec 17

I just completed "Reindeer Maze" - Day 16 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/16 I had the help of an LLM, but I learned about the NetworkX library in the process and generated nice output with Matplotlib. The first solution didn't scale, but I reimplemented with BFS.

7 likes 1 replies

?

Replies

Jeff Standen · Dec 17

Nice! I thought about using networkx too, since `all_shortest_paths` is already there; but I didn't want to spend the time getting the headings into an adjacency graph. 😅 The matplotlib maze render is great.