aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-06 18:28:40 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-06 18:28:40 -0500
commit945a0a01e00d1098c234690e40095414cd8d2256 (patch)
treeab1564076da8961c41b91e87c400bae2d0f9603f
parent0e3b0f4732541d14b2fbc1e740d5e86206df6e9a (diff)
day1: revisit, simplify
-rw-r--r--day1/part1.clj25
1 files changed, 10 insertions, 15 deletions
diff --git a/day1/part1.clj b/day1/part1.clj
index 3d6a0f9..3316424 100644
--- a/day1/part1.clj
+++ b/day1/part1.clj
@@ -4,19 +4,14 @@
; the previous.
;
-(loop [inc-count 0
- prev (Integer/parseInt (read-line))
- ]
- (let [input (read-line)]
- (if (not (empty? input))
- (let [depth (Integer/parseInt input)]
- (recur
- (if (> depth prev) (inc inc-count) inc-count)
- depth
- )
- )
- (println inc-count)
- )
- )
- )
+(->> (slurp "./in")
+ (clojure.string/split-lines)
+ (map read-string)
+ (reduce
+ #(update [%2 (second %1)] 1 (partial + (if (> %2 (first %1)) 1 0)))
+ [999999 0]
+ )
+ (second)
+ (println)
+ )