Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 540 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 540 Bytes

Advent of Code 2023

Running solutions

cargo run --bin day1
cargo run --bin day2
cargo run --bin day3

Note that the author of Advent of Code has stated that he doesn't want puzzle inputs shared publicly, so they are not included in this repo.

If you want to run the code, you'll need to supply your own puzzle inputs by creating an inputs folder that includes each day's input. The first day's puzzle input is expected at input/day1 and the second day's at input/day2, etc.

Run tests

cargo test