https://github.com/pmunch/aoc2018
My solutions for Advent of Code 2018
https://github.com/pmunch/aoc2018
Last synced: 8 months ago
JSON representation
My solutions for Advent of Code 2018
- Host: GitHub
- URL: https://github.com/pmunch/aoc2018
- Owner: PMunch
- Created: 2018-12-11T09:51:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T09:38:52.000Z (over 7 years ago)
- Last Synced: 2025-04-05T16:34:59.152Z (about 1 year ago)
- Language: Nim
- Size: 73.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Advent of Code 2018
====
Welcome to my repository of solutions for AoC in Nim. The plan is to upload new
solutions the day after the puzzle is released (no cheating!), but no
guarantees I actually make it through them all.
The solutions found here all read "input.txt" from their folder when
applicable. So to run it on your own input simply save them to the folder of
the right day, or paste it into the first line constant.
All solutions will be written in Nim, and with nothing but the standard
library. I will also try to keep the code as simple and Nim-like as possible.
This means that performane is not one of the primary objectives, but whenever
tasks "require" optimization to finish in a reasonable time it's done. If I
decide to optimize something just for the fun of it, these implementations can
be found as partX_opt.nim along with the regular solution.