Crates.io | aochelpers |
lib.rs | aochelpers |
version | |
source | src |
created_at | 2023-11-19 20:29:59.22692 |
updated_at | 2024-12-12 21:56:36.729029 |
description | A set of structs and associated methods that cover common use=cases when solving Advent Of Code problems. |
homepage | |
repository | |
max_upload_size | |
id | 1041502 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Various structs and associated methods which may come in useful when solving Advent of Code challenges:
Direction
- Compass DirectionCoordinate
- Standard 2D Cartesian CoordinateParticle
- Location with compass directionRectangle
- Pair of Coordinates describing a rectangleCoordinate3d
- Standard 3D Cartesian CoordinateCuboid
- Pair of 3D Coordinates describing a cuboidScoredItem
- Used with std::collections::BinaryHeap to implement A* or Djikstra's algorithmsget_daily_input()
- fetches and caches the input for a given day's puzzleparse_number_grid<T>()
- converts a grid of 0-9 digits to a HashMap<Coordinate