Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/huzecong/advent-of-typescript-2020
- Owner: huzecong
- Created: 2020-12-20T03:53:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-07T23:04:59.000Z (5 months ago)
- Last Synced: 2024-11-12T15:39:51.446Z (2 months ago)
- Topics: advent-of-code, advent-of-code-2020, typescript
- Language: TypeScript
- Homepage:
- Size: 935 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```