#advent #coordinate #methods #algorithm #direction #problem #solving

aochelpers

A set of structs and associated methods that cover common use=cases when solving Advent Of Code problems

22 releases

0.8.3 Dec 12, 2024
0.7.1 Nov 29, 2024
0.6.1 Dec 27, 2023
0.3.2 Nov 27, 2023

#513 in Algorithms

Download history 13/week @ 2024-09-20 7/week @ 2024-09-27 7/week @ 2024-10-11 107/week @ 2024-11-01 23/week @ 2024-11-08 6/week @ 2024-11-15 4/week @ 2024-11-22 443/week @ 2024-11-29 263/week @ 2024-12-06 103/week @ 2024-12-13

814 downloads per month

Apache-2.0

34KB
601 lines

Advent Of Code Helpers

Various structs and associated methods which may come in useful when solving Advent of Code challenges:

  • Direction - Compass Direction
  • Coordinate - Standard 2D Cartesian Coordinate
  • Particle - Location with compass direction
  • Rectangle - Pair of Coordinates describing a rectangle
  • Coordinate3d - Standard 3D Cartesian Coordinate
  • Cuboid - Pair of 3D Coordinates describing a cuboid
  • ScoredItem - Used with std::collections::BinaryHeap to implement A* or Djikstra's algorithms
  • get_daily_input() - fetches and caches the input for a given day's puzzle
  • parse_number_grid<T>() - converts a grid of 0-9 digits to a HashMap<Coordinate, T>

Dependencies

~5–15MB
~203K SLoC