I'm solving the Advent of Code puzzles using the Rust programming language.
Completed:
In progress:
- https://adventofcode.com/2022
- https://adventofcode.com/2020
- https://adventofcode.com/2019
- https://adventofcode.com/2015
# running code for some day of the Advent of Code event
# for example: cargo run -p day-01-2020
cargo run -p <day-num-year>
# quick check
cargo check
# or
# for example: cargo check -p day-01-2020
cargo check -p <day-num-year>
# creating a new cargo package
# for example: cargo new day-01-2020
# Then add an entry to the workspace in Cargo.toml
cargo new <year>/<day-num-year>