This repository contains all of my solutions for Advent of Code
Pretty much all solutions use Rust.
Except the very quirky ones, which can be found here
- Add the input files to the corresponding
inputs/<year>directory- Must be in the format
<day>.txt - Can be suffixed, e.g.
<day>.<suffix>.txt,
- Must be in the format
- Run
cargo run <year> <day> [suffix]- Optionally add
--benchflag to benchmark the solution over multiple runs--runs <N>can be used to specify the number of runs
- Optionally add