This repository is a way for me to learn Rust (and having fun!) by challenging myself with the Advent of Code 2019
Each day, if I can, I'll open a PR with the code I wrote to find the answers of the daily puzzle.
From here, you'll be able to see my progression. Be gentle, it's the first time I'm trying Rust! Any advice are welcome.
Each folder is a Rust program intended to solve a daily Advent of Code puzzle.
On each of them, you'll find a few command allowing you to run common operation:
make install # or cargo update
make build # or cargo build
make run # or cargo run (with the input as an option)
make test # or cargo test
In order to run them, you'll need to install Rust and Cargo (follow the Installation chapter of the Rust book)
advent-of-code-rust is licensed under the MIT License.