Solutions to AoC 2024 in Rust 🦀
# to be able to download inputs (see fetch.sh)
export AOC_SESSION=[value from session cookie]
make # run todays (if in december 2024)
make 01 # run a specific day, e.g 01-25
make all # run all days
# directly with cargo, if you prefer
cargo run --release --bin 01 # run a specific day, e.g 01
cargo run --release # run all days