My solutions using Typescript and the subtle art of flailing at the keyboard.
npm i
See each advent for example commands
npm run advent:<year> <OPTIONAL: days>
Runs all tests from all advents
npm run test
Run all solutions:
npm run advent:2023
Run specific day(s) by including the day numbers as args (e.g. day 1):
npm run advent:2023 1 // runs day 1 only
npm run advent:2023 3 5 9 // runs day 3, 5 and 9
npm run test:2023
Run all solutions:
npm run advent:2022
Run specific day(s) by including the day numbers as args (e.g. day 1):
npm run advent:2022 1 // runs day 1 only
npm run advent:2022 3 5 9 // runs day 3, 5 and 9
npm run test:2022