Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zyhou/advent-of-code-2020
This is my attempt to solve the Advent Of Code 2020
https://github.com/zyhou/advent-of-code-2020
advent-of-code advent-of-code-2020 javascript
Last synced: about 1 month ago
JSON representation
This is my attempt to solve the Advent Of Code 2020
- Host: GitHub
- URL: https://github.com/zyhou/advent-of-code-2020
- Owner: zyhou
- License: mit
- Created: 2020-12-01T16:34:52.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-12T20:17:53.000Z (about 4 years ago)
- Last Synced: 2024-11-06T13:47:42.659Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2020, javascript
- Language: JavaScript
- Homepage: https://adventofcode.com/2020
- Size: 186 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent Of Code 2020
This is my attempt to solve the [Advent Of Code 2020](https://adventofcode.com/2020) :christmas_tree: puzzles using Javascript.
[![Unit test](https://github.com/zyhou/advent-of-code-2020/workflows/Unit%20test/badge.svg)](https://github.com/zyhou/advent-of-code-2020/actions)
[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)## Install
```bash
make install # Install NPM dep
```## Run
```bash
make run-01 # Run day one script
make run-02 # Run day two script
# ...
make run-whatever-day # Run day N script
```## Test
```bash
make test # Run all tests
make test:watch # Watch all tests
```