Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/simonfl3tcher/2016-advent-of-code

2016 advent of code challenge
https://github.com/simonfl3tcher/2016-advent-of-code

advent-of-code advent-of-code-2016 challenge javascript

Last synced: 1 day ago
JSON representation

2016 advent of code challenge

Awesome Lists containing this project

README

        

# 2016-advent-of-code

My code for the 2016 Advent Of Code challenge.

## Find answer to single a day

1. cd into the day:
```bash
cd day-1
```

2. Run node
```bash
node
```

3. Load file into REPL
```javascript
.load solve.js
```

4. Run module
```javascript
module.run()
```

## TODO: Check everything is running OK.

1. Install dependencies:

```javascript
npm install
```

2. Run the unit tests

```javascript
npm test
```