Make sure you have Rust installed.
To run an example, you can simply run:
cargo run -- <day> <task> -e <example_id>The double-dash between run and the arguments is important. For example, if you want to run the first example for day 13 task 2, you would enter
cargo run -- 13 2 -e 1To run a solution, you can simply leave out the -e <example_id>:
cargo run -- <day> <task>The double-dash between run and the arguments is important. For example, if you want to run the solution for day 16 task 1, you would enter
cargo run -- 16 1- Adding unittests
- Adding timing information