Advent of Code 2021
These are puzzles for the Advent of Code 2021 challenge, written and solved in the Rust programming language.
The puzzle for each day is in its own file in src/bin
, and can be run using the following command (from the root folder):
cargo run --bin day1
If a particular day has tests, you can also run those:
cargo test --bin day1
I hope people learning Rust find this educational!