https://github.com/scinos/advent-of-code-2015
These are my solutions to the http://adventofcode.com/2015 challenge.
https://github.com/scinos/advent-of-code-2015
advent-of-code-2015 solutions
Last synced: 7 days ago
JSON representation
These are my solutions to the http://adventofcode.com/2015 challenge.
- Host: GitHub
- URL: https://github.com/scinos/advent-of-code-2015
- Owner: scinos
- Created: 2017-04-15T03:05:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-15T03:05:58.000Z (about 8 years ago)
- Last Synced: 2025-04-09T13:45:04.527Z (3 months ago)
- Topics: advent-of-code-2015, solutions
- Language: JavaScript
- Homepage:
- Size: 103 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Advent of Code solutions
========================
These are my solutions to the [Advent of Code](http://adventofcode.com/) challenge.
Installation
============
Clone the repo and run:```
npm install
```Run the tests
=============All challenges have automated tests to validate the expected response. To run them, execute:
```
npm test
```Run individual challenges
=========================There is a generic challenge runner that can run the challenge for an individual day and print the response in the command line. To execute it, run:
```
./src/run.js -d -p <
```Exmaple:
```
./src/run.js -d 1 -p 1 < test/day01/input.txt
```