Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 585 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 585 Bytes

Advent of Code 2015 ⭐️

My solutions for Advent of Code 2015.

To run these solutions you'll need to have Rust (install Rust) and cargo-aoc. Install cargo-aoc:

cargo install cargo-aoc

To run all solutions sequentially:

cargo run --release

To run a specific day or part:

# run the solution for day 13, part 1 and 2
cargo aoc -d 13

# run the solution for day 13, only part 2
cargo aoc -d 13 -p 2