Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/huzecong/advent-of-typescript-2020

Solutions to Advent of Code 2020, in TypeScript
https://github.com/huzecong/advent-of-typescript-2020

advent-of-code advent-of-code-2020 typescript

Last synced: 14 days ago
JSON representation

Solutions to Advent of Code 2020, in TypeScript

Awesome Lists containing this project

README

        

# Advent of Code 2020

Solutions to [Advent of Code 2020](https://adventofcode.com/2020), implemented in TypeScript.

To run:
```bash
$ npm i
$ ./bin/run/ day1 --profile
Solving problem day1
Part 1 took 0.000s
Part 1 answer: 970816
Part 2 took 0.011s
Part 2 answer: 96047280
```
Or, verify all solutions through unit tests:
```bash
$ npm test
```