Solutions to adventofcode.com problems for 2018 in Rust.
To run all tests for all problems:
cargo test
To run tests for a specific day:
cargo test year${YEAR}::day${DAY}To run with actual input:
export AOC_SESSION="<adventofcode.com session>"
cargo run -- ${YEAR} ${DAY}...