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

https://github.com/fazouane-marouane/advent-of-code-2017

My personal solutions to Advent of Code 2017 in ReasonML
https://github.com/fazouane-marouane/advent-of-code-2017

advent-of-code advent-of-code-2017 adventofcode adventofcode2017 reasonml

Last synced: about 1 month ago
JSON representation

My personal solutions to Advent of Code 2017 in ReasonML

Awesome Lists containing this project

README

          

# Advent of Code 2017

Those are my personal solutions to [Advent of Code 2017](http://adventofcode.com/2017).

Day | Title | Status
----|-------|------
[01][day01-url] | Inverse Captcha | [![completed]](/src/day01/)
[02][day02-url] | Corruption Checksum | [![completed]](/src/day02/)
[03][day03-url] | Spiral Memory | [![completed]](/src/day03/)
[04][day04-url] | High-Entropy Passphrases | [![completed]](/src/day04/)
[05][day05-url] | A Maze of Twisty Trampolines, All Alike | [![completed]](/src/day05/)
[06][day06-url] | Memory Reallocation | [![completed]](/src/day06/)
[07][day07-url] | Recursive Circus | [![not-started]](/src/day07/)

# Build

```bash
# install the dependencies
npm install
# build the code
npm run build
# run all the tests
npm run test
```

# Run

```
npm start day01
```

# Build + Watch

```bash
# The constantly build the code
npm run watch
# The constantly run tests
npm run test-watch
```

# Editor

If you use `vscode`, Press `Windows + Shift + B` it will build automatically

[completed]: https://img.shields.io/badge/Completed-%E2%9C%94-green.svg?style=flat-square
[not-started]: https://img.shields.io/badge/Not%20started-%E2%9C%98-lightgrey.svg?style=flat-square

[day01-url]: https://adventofcode.com/2017/day/1
[day02-url]: https://adventofcode.com/2017/day/2
[day03-url]: https://adventofcode.com/2017/day/3
[day04-url]: https://adventofcode.com/2017/day/4
[day05-url]: https://adventofcode.com/2017/day/5
[day06-url]: https://adventofcode.com/2017/day/6
[day07-url]: https://adventofcode.com/2017/day/7