My solutions to Advent of Code challenges. Solutions are being written in Rust and Python both.
The repo is being re-organised to use a scaffolding template. Therefore Python solutions do not work at the moment.
# For Rust
# example: cargo run --bin aoc_2015_01
cargo run --bin aoc_<year>_<day number>
# For Python
# example: python3 "solutions/python/2015/day_01/main.py"
python3 "solutions/python/<year>/day_<day number>/main.py"
- Add examples as test cases
- Change unwraps to Options/Results and
?
shorthand - Add challenge text for each day