Add solution for day 17
Add solution for day 15
Add solution for day 14
This repository contains all the code I wrote for the Advent of Code 2020, written in Rust as a learning exercise.
The binary can be built using:
cargo build --release
And the single binary can be used to run each of the problems (depending on the required arguments - refer to the code for more details). For example, to run the first problem with the statement input:
./aoc-2020 01 assets/01-test.txt
The documentation can be built similarly. To generate and open the HTML docs in a browser:
cargo doc --open