summaryrefslogtreecommitdiff
path: root/readme.org
blob: c1923ac6465cbc0467cc4de53ae5f23f665f307d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
* Advent of Code 2019

** Personal challenge

Try to keep the solution pure. Only main can do IO things, like return
different results when it's called differently. The rest of the
program should only be pure expressions.

** Optimizations

- Limit the use of statements. Try to use expressions instead, or move
  the statement out to a function.