Tag: depth-first search
-
Climbing a depth-first search hill, Advent of Code 2024, day 10
Today, we’re diving into the Day 10 puzzle. Like Day 6, it’s a 2D grid, but this time, we need to consider multiple paths. It’s fascinating to see how depth-first search comes into play here. Each point on the map is represented by a single-digit integer indicating its height, ranging from 0 to 9, with…