Skip to content

Latest commit

History

History
29 lines (20 loc) 路 705 Bytes

README.md

File metadata and controls

29 lines (20 loc) 路 705 Bytes

馃巹 AoC '21

My solutions for Advent of Code 2021 :)

Running the tests

Some days will be in Rust, some in TypeScript, and some in both.

To run everything:

sh ./test.sh

To 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 tests

To run the Rust solutions, make sure you have Rust and Cargo installed and run:

cargo test part -- --nocapture --test-threads=1

To run the TypeScript solutions, make sure you have Deno installed and run:

deno test -A --filter="/Day \d+, Part \d+/"