Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/simonfl3tcher/2016-advent-of-code
- Owner: simonfl3tcher
- Created: 2016-11-28T18:44:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-12T10:49:54.000Z (almost 8 years ago)
- Last Synced: 2024-10-11T22:48:22.437Z (27 days ago)
- Topics: advent-of-code, advent-of-code-2016, challenge, javascript
- Language: JavaScript
- Homepage:
- Size: 490 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```