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

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

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.