My solutions for Advent of Code 2021 :)
Some days will be in Rust, some in TypeScript, and some in both.
To run everything:
sh ./test.shTo run tests for a specific day using the shell script, you can pass the day as an argument:
sh ./test.sh 7 # Runs Day 7 testsTo run the Rust solutions, make sure you have Rust and Cargo installed and run:
cargo test part -- --nocapture --test-threads=1To run the TypeScript solutions, make sure you have Deno installed and run:
deno test -A --filter="/Day \d+, Part \d+/"