Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/danilafe/crystal-advent-of-code-2017
- Owner: DanilaFe
- Created: 2017-12-16T08:11:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-21T01:37:58.000Z (about 7 years ago)
- Last Synced: 2024-11-09T13:21:53.028Z (2 months ago)
- Topics: advent-of-code, advent-of-code-2017, aoc2017, crystal
- Language: Crystal
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```