advent_of_code_2024

Rust Just my aoc repo this year. logo

highlights:

  • day-2 when brute force is enough :D
  • day-3 nom is probably heavy for this regex problem. First day I actually used mry in testing.
  • day-5 first day where a DAG made sense.
  • day-6 game_grid , which looks useful for bevy, I could have written a visualization, made the setup a breeze 😀
  • day-13 z3 to the rescue! 🚀
  • day-14 A fun bevy day! day-14 screenshot
  • day-16 a natural place to use pathfinding crate! This one led to my first rust crate pr (to game-grid) from AoC this year.
  • day-18 Since the problem didnt fully lend itself naturally to game_grid, I just used glam for coordinates.
  • day 19 Trie as I might, I could not avoid using cached.
  • day 23 Finally found a strong case for petgraph

live results (will ahve to come back for day 21)

logo