blob: 9487a493b5f62aff4f95922f652e9b871fb47d1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
; Day 2, part 2
; Read a list of instructions from stdin:
; "down X" increases aim number by X,
; "up X" decreases aim by X,
; "forward X" increases xpos by X and depth by (aim * X).
; Print (xpos * depth) after end of data.
;
(require '[clojure.string :as str])
(println
(apply *
(map
(reduce
#(case (first %2)
"forward" (-> %1 (update :xpos + (second %2))
(update :depth + (* (%1 :aim) (second %2))))
"up" (update %1 :aim - (second %2))
"down" (update %1 :aim + (second %2)))
{:xpos 0 :depth 0 :aim 0}
(->> (slurp "./in")
str/split-lines
(map #(str/split % #" "))
(map #(update % 1 read-string))))
[:xpos :depth]
)))
|