aboutsummaryrefslogtreecommitdiff
path: root/2021/day-02/day-02.rkt
diff options
context:
space:
mode:
authorHJ <thechairman@thechairman.info>2021-12-09 18:05:04 -0500
committerHJ <thechairman@thechairman.info>2021-12-09 18:05:04 -0500
commit527bc4762f9c66c9244f0ac1fbee6357478ac9ef (patch)
treeecd3ffc97de5aab201699f93aab1e0417ac3d25d /2021/day-02/day-02.rkt
downloadgleam_aoc-527bc4762f9c66c9244f0ac1fbee6357478ac9ef.tar.gz
gleam_aoc-527bc4762f9c66c9244f0ac1fbee6357478ac9ef.zip
putting all my solutions together in 1 repository
Diffstat (limited to '2021/day-02/day-02.rkt')
-rw-r--r--2021/day-02/day-02.rkt39
1 files changed, 39 insertions, 0 deletions
diff --git a/2021/day-02/day-02.rkt b/2021/day-02/day-02.rkt
new file mode 100644
index 0000000..dbd1275
--- /dev/null
+++ b/2021/day-02/day-02.rkt
@@ -0,0 +1,39 @@
+#lang racket
+(require advent-of-code
+ threading
+ algorithms)
+
+(define motion-data
+ (~> (open-aoc-input (find-session) 2021 2 #:cache (string->path "./cache"))
+ (port->list read _)
+ (chunks-of _ 2)))
+
+;; part 1
+(for/fold ([depth 0]
+ [position 0]
+ #:result (* depth position))
+ ([motion (in-list motion-data)])
+ (match motion
+ [(list 'forward x) (values depth
+ (+ position x))]
+ [(list 'up x) (values (- depth x)
+ position)]
+ [(list 'down x) (values (+ depth x)
+ position)]))
+
+;; part 2
+(for/fold ([aim 0]
+ [depth 0]
+ [position 0]
+ #:result (* depth position))
+ ([motion (in-list motion-data)])
+ (match motion
+ [(list 'forward x) (values aim
+ (+ depth (* aim x))
+ (+ position x))]
+ [(list 'up x) (values (- aim x)
+ depth
+ position)]
+ [(list 'down x) (values (+ aim x)
+ depth
+ position)])) \ No newline at end of file