Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-15T03:05:58.000Z (over 7 years ago)
- Last Synced: 2024-10-11T20:22:30.146Z (3 months ago)
- Topics: advent-of-code-2015, solutions
- Language: JavaScript
- Homepage:
- Size: 103 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Advent of Code solutions
========================![codeship status](https://codeship.com/projects/92e8c360-8b88-0133-2c21-16cdf1c92cd5/status?branch=master "Codeship Status")
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
```