My personal implementations for Advent of Code (AoC)
The code is designed to take input from stdin
. A wrapper program run_day.sh
exists to run code from the inputs/ directory.
This requires cargo-aoc
to work.
cargo install cargo-aoc
cargo aoc -d 1
cargo run --release
I actually don't know how to do this with cargo-aoc
. It does lose a bit of its
flexibility. But its nice to get benchmarks and have a coding paradigm very
similar to others.
Be sure to check out the Rust Discord! We are on there every day.
- BurntSushi/advent-of-code
- Globidev/advent-of-code
- birkenfield/advent18
- kcaffrey/aoc-rs
- AuroransSolic/aoc_2018
- gobanos/advent-of-code-2018
- anowell/advent-of-code
- zesterer/advent-of-code-2018
- troiganto/aoc-2018
- Add tests
- Follow BurntSushi's example and don't panic