Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 842 Bytes

File metadata and controls

55 lines (42 loc) · 842 Bytes

🎄 Advent of code 2022

This is a starter for the advent of code, in TypeScript. Fork it/clone it, and get started!

Completion

Day Completion

How to

Animated gif demo

1. Install dependencies

yarn

2. Generate a day files

yarn generate
# or
yarn generate --day 01
# or
yarn generate --day 01 --extension typescript # javascript and typescript handled

3. Run a single day

yarn start --day 01
# or, to keep process open and listen to changes
yarn dev --day 01

4. Mark day as complete

yarn complete
# or
yarn complete --day 01 --stars 2