Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 371 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 371 Bytes

🎄 Advent of Code solutions

Solutions for https://adventofcode.com/ in Rust.

Solutions are structured such that each year has is it's own binary, with a shared utils library crate for helper modules.

To run an entire year's solutions:

 cd <YEAR>
 cargo run --release

To run a specific day:

 cargo install cargo-aoc
 cd <YEAR>
 cargo aoc -d <DAY>