Skip to content

Latest commit

 

History

History
89 lines (69 loc) · 3.33 KB

README.md

File metadata and controls

89 lines (69 loc) · 3.33 KB

Advent Of Code 🎁 in rust 🦀

About

This is my attempt to solve AOC problems in Rust!

Setup

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/

Run

Usage: advent_of_code_2023 --day <DAY>

Options:
  -d, --day <DAY>
  -h, --help       Print help

Test

cargo test -p <crate>

for example, to test the 2024 crate:

cargo test -p aoc_2024

Progress

2023

aoc_2023

2024

aoc_2024

Thanks

The project structure, as well as solutions when I struggle to find them on my own, are inspired by this repository.