aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-03 09:20:18 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-03 09:20:18 -0500
commit09e1c2712b76bf35aa6beeb8709f22911dc494d3 (patch)
treec17770fec17e8f63aa17a50dc5cfc1dbaf5e86c2
parent5ebea9566f625901f7736a8cdb24f858853c6434 (diff)
day2: one more update
-rw-r--r--day2/part1.clj10
1 files changed, 6 insertions, 4 deletions
diff --git a/day2/part1.clj b/day2/part1.clj
index 6b09212..d301b37 100644
--- a/day2/part1.clj
+++ b/day2/part1.clj
@@ -16,10 +16,12 @@
n (Integer/parseInt (second ins))
]
(recur
- (case (first ins)
- "forward" (update-in data [:xpos] + n)
- "up" (update-in data [:depth] - n)
- "down" (update-in data [:depth] + n)
+ (apply (partial update-in data)
+ (case (first ins)
+ "forward" [[:xpos] + n]
+ "up" [[:depth] - n]
+ "down" [[:depth] + n]
+ )
)
)
)