Solutions to Advent of Code 2024 in Rust.
- Solutions are in
src/solutions
- Usage:
cargo run <day>
Tip
The standard cargo run
command will build and run an unoptimized debug
build. If you want to test how fast the solution is, you should create a
release build and run that.
cargo build --release
time target/release/aoc2024 <day>