/advent-of-code

Advent of code solutions, probably in TypeScript

Primary LanguageTypeScript

Advent of Code Solutions

Build Status

Running Solutions

To run any of the solution files in this repo (after running npm install):

npm start <solution-file>

e.g.

npm start 2019/01/part-1/main.ts

Running Test Specs

Tests are written for Jest to run:

npm test

Or simply

jest

To run tests for a single spec:

npm test -- --t="2020-12-01.1"