summaryrefslogtreecommitdiff
path: root/readme.org
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-12-01 09:24:11 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-12-01 09:24:11 +0200
commit34bffc49705fb31f947ad0f2f45494dc9472e81b (patch)
treec9c9d4c374786cc1e89eff6a07ffcbd6ba65ee99 /readme.org
parentc98244df602a3f3d745f5971e22b1031c3e55770 (diff)
Day 1
Diffstat (limited to 'readme.org')
-rw-r--r--readme.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/readme.org b/readme.org
new file mode 100644
index 0000000..c1923ac
--- /dev/null
+++ b/readme.org
@@ -0,0 +1,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.