1
0
Fork 0
Go to file
Stefan Bühler 7ba188a098 add readme 2020-12-26 10:46:11 +01:00
data reorganize data files, use data files for all days (even when not provided as download) 2020-12-26 10:37:15 +01:00
src/bin convert line endings to unix 2020-12-26 10:38:29 +01:00
.gitignore ignore .vscode 2020-12-19 16:59:58 +01:00
Cargo.lock day1-4 2020-12-04 19:37:36 +01:00
Cargo.toml reorganize data files, use data files for all days (even when not provided as download) 2020-12-26 10:37:15 +01:00
README.md add readme 2020-12-26 10:46:11 +01:00

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'