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
- Host: GitHub
- URL: https://github.com/fazouane-marouane/advent-of-code-2017
- Owner: fazouane-marouane
- License: mit
- Created: 2017-12-03T13:10:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-10T09:57:01.000Z (almost 8 years ago)
- Last Synced: 2025-02-18T19:51:45.261Z (9 months ago)
- Topics: advent-of-code, advent-of-code-2017, adventofcode, adventofcode2017, reasonml
- Language: OCaml
- Homepage: http://adventofcode.com/2017
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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