Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/danilafe/crystal-advent-of-code-2017

Solutions to Advent of Code 2017 written in Crystal.
https://github.com/danilafe/crystal-advent-of-code-2017

advent-of-code advent-of-code-2017 aoc2017 crystal

Last synced: 11 days ago
JSON representation

Solutions to Advent of Code 2017 written in Crystal.

Awesome Lists containing this project

README

        

# Crystal Advent Of Code-2017
Solutions to Advent of Code 2017 written in Crystal. These should be pretty self-contained.
Solutions that require big inputs look for the file named day[num].txt, which should
contain your puzzle input. To run, say, the solution to day 1, use the command
```
crystal day1_1.cr
```
If you wish to time the solution, use
```
crystal build --release day1_1.cr
time ./day1_1
```