Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 540 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 540 Bytes

Advent of Code 2023 Rust

My Advent of Code 2023 solutions in the Rust.

Run days

As prerequisites create inputs folder and put your input there.

# Switch to day 1a, and run it
cd day01a
cargo run --release

# or run everything in parallel
cd ../runner
cargo run --release --bin runner-par

# or benchmark every day
cd ../runner
cargo run --release --bin bench

Sources