You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
2 years ago | |
---|---|---|
data | 2 years ago | |
src/bin | 2 years ago | |
.gitignore | 2 years ago | |
Cargo.lock | 2 years ago | |
Cargo.toml | 2 years ago | |
README.md | 2 years ago |
README.md
Advent of Code 2020
Solutions to all 25 puzzles (with the inputs I was given).
Run program for a specific day (e.g. day 25):
cargo run --release --bin day25
Run and time all solutions:
cargo build --release
/usr/bin/time sh -c 'for d in `seq 1 25`; do echo "----- DAY $d -----"; ./target/release/day$d; echo "----- END DAY $d -----"; done'