Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshwcomeau/advent-of-code-2016
https://github.com/joshwcomeau/advent-of-code-2016
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshwcomeau/advent-of-code-2016
- Owner: joshwcomeau
- Created: 2016-12-03T14:29:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-12T01:24:14.000Z (about 8 years ago)
- Last Synced: 2024-12-09T14:14:36.619Z (24 days ago)
- Language: JavaScript
- Size: 174 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
[Advent of Code](http://adventofcode.com/) is a month-long programming challenge. Similar to an advent calendar, every day a new problem is released. These are my solutions.
### Running
This code is written in ES6 javascript. For best results, run using Node 7.
NPM scripts are used to run specific problem numbers. Each question has 2 parts. You can choose the part you wish to solve by passing it as an additional argument:
```
$ npm run solve problemN partN
```For example, `npm run solve problem1 part2` will solve the second part of the first problem.