Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```