aboutsummaryrefslogtreecommitdiff
path: root/2020
diff options
context:
space:
mode:
authorHunky Jimpjorps <thechairman@thechairman.info>2022-12-12 09:57:35 -0500
committerHunky Jimpjorps <thechairman@thechairman.info>2022-12-12 09:57:35 -0500
commit2c50f6aefe5c385672312e8907fc1e6724e215d1 (patch)
tree704e890034eaddfb5348828d50528a5326c1368c /2020
parent0e12a59e64a6f95c2448cc5ddec96984d6111613 (diff)
downloadgleam_aoc-2c50f6aefe5c385672312e8907fc1e6724e215d1.tar.gz
gleam_aoc-2c50f6aefe5c385672312e8907fc1e6724e215d1.zip
misc changes
Diffstat (limited to '2020')
-rw-r--r--2020/day-14/day-14.rkt11
1 files changed, 11 insertions, 0 deletions
diff --git a/2020/day-14/day-14.rkt b/2020/day-14/day-14.rkt
new file mode 100644
index 0000000..9ac339c
--- /dev/null
+++ b/2020/day-14/day-14.rkt
@@ -0,0 +1,11 @@
+#lang racket
+
+(require advent-of-code
+ threading
+ fancy-app
+ relation
+ rebellion/binary/bitstring)
+
+(define instructions (string-split (fetch-aoc-input (find-session) 2020 14) "\n"))
+
+(~> (number->string 11 2) ->list (map (->number _) _))