aboutsummaryrefslogtreecommitdiffstats
path: root/day2/part2.clj
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-13 14:54:54 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-13 14:54:54 -0500
commit2c026e06a3466ea5aba498636a9d07b5ccc434f5 (patch)
treefc09d6ace4bf5694e234ea4c6ca9d1122479db5d /day2/part2.clj
parentb2d8d90014bb28ccdb4eef0fd9b34ad74237b76c (diff)
day2: revisit, make good
Diffstat (limited to 'day2/part2.clj')
-rw-r--r--day2/part2.clj37
1 files changed, 16 insertions, 21 deletions
diff --git a/day2/part2.clj b/day2/part2.clj
index 7eeeb21..9487a49 100644
--- a/day2/part2.clj
+++ b/day2/part2.clj
@@ -8,25 +8,20 @@
(require '[clojure.string :as str])
-(loop [data {:xpos 0 :depth 0 :aim 0}]
- (let [input (read-line)]
- (if (empty? input)
- (println (apply * (map data [:xpos :depth])))
- (let [ins (str/split input #" ")
- n (Integer/parseInt (second ins))
- ]
- (recur
- (case (first ins)
- "forward" (-> data
- (update-in [:xpos] + n)
- (update-in [:depth] + (* (data :aim) n))
- )
- "up" (update-in data [:aim] - n)
- "down" (update-in data [:aim] + n)
- )
- )
- )
- )
- )
- )
+(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]
+ )))