This is my attempt to solve AOC problems in Rust!
If you want to run the solutions with your input, please provide them with the following name day_{day_number}.txt
in the folder ./resources/{year}/real/
Usage: advent_of_code_2023 --day <DAY>
Options:
-d, --day <DAY>
-h, --help Print help
cargo test -p <crate>
for example, to test the 2024 crate:
cargo test -p aoc_2024
- Day 01: Trebuchet?! ⭐⭐
- Day 02: Cube Conundrum ⭐⭐
- Day 03: Gear Ratios ⭐⭐
- Day 04: Scratchcards ⭐⭐
- Day 05: If You Give A Seed A Fertilizer ⭐⭐
- Day 06: Wait For It ⭐⭐
- Day 07: Camel Cards ⭐⭐
- Day 08: Haunted Wasteland ⭐⭐
- Day 09: Mirage Maintenance ⭐⭐
- Day 10: Pipe Maze ⭐⭐
- Day 11: Cosmic Expansion ⭐⭐
- Day 12: Hot Springs ⭐⭐
- Day 13: Point of Incidence ⭐⭐
- Day 14: Parabolic Reflector Dish ⭐⭐
- Day 15: Lens Library ⭐⭐
- Day 16: The Floor Will Be Lava ⭐⭐
- Day 17: Clumsy Crucible ⭐⭐
- Day 18: Lavaduct Lagoon ⭐⭐
- Day 19: Aplenty ⭐⭐
- Day 20: Pulse Propagation ⭐⭐
- Day 21: Step Counter ⭐⭐
- Day 22: Sand Slabs ⭐⭐
- Day 23: A Long Walk ⭐⭐
- Day 24: Never Tell Me The Odds ⭐⭐
- Day 25: Snowverload ⭐⭐
- Day 01: Historian Hysteria ⭐⭐
- Day 02: Red-Nosed Reports ⭐⭐
- Day 03: Mull It Over ⭐⭐
- Day 04: Ceres Search ⭐⭐
- Day 05: Print Queue ⭐⭐
- Day 06: Guard Gallivant ⭐⭐
- Day 07: Bridge Repair ⭐⭐
- Day 08: Resonant Collinearity ⭐⭐
- Day 09: Disk Fragmenter ⭐⭐
- Day 10: Hoof It ⭐⭐
- Day 11: Plutonian Pebbles ⭐⭐
- Day 12: Garden Groups ⭐⭐
- Day 13: Claw Contraption ⭐⭐
- Day 14: Restroom Redoubt ⭐⭐
- Day 15: Warehouse Woes ⭐⭐
- Day 16: Reindeer Maze ⭐⭐
The project structure, as well as solutions when I struggle to find them on my own, are inspired by this repository.