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
- Host: GitHub
- URL: https://github.com/jonathanj/adventofcode
- Owner: jonathanj
- License: mit
- Created: 2016-12-01T20:08:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-03T22:56:25.000Z (about 3 years ago)
- Last Synced: 2025-07-15T07:21:46.430Z (11 months ago)
- Language: Clojure
- Size: 1.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.