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

https://github.com/jonathanj/adventofcode

My solutions to Advent of Code 2016
https://github.com/jonathanj/adventofcode

Last synced: 11 months ago
JSON representation

My solutions to Advent of Code 2016

Awesome Lists containing this project

README

          

Advent of Code
==============

My Advent of Code solutions.

Lessons Learned in 2016
-----------------------

* Spend time reading and understanding the problem, then think about the data
structure or algorithm that best represents the problem, even if it requires
doing a lot of research and learning, and only _then_ begin writing any code.

* Regular expressions may seem like a good idea but very rarely provide
time-efficient value, in particular writing a parser with a regular expression
is almost always a bad idea. Use sparingly.