aboutsummaryrefslogtreecommitdiffstats
path: root/day8
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-08 11:07:53 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-08 11:07:53 -0500
commit17362b34ccec35de208713610e9dd3d6d1eec024 (patch)
treea7aa4d9104bb67eafabcd05f8f0aff2fc28a67b0 /day8
parent85d2aae745d641daec8f92adce7064d6e3258410 (diff)
day8: make part1 concise
Diffstat (limited to 'day8')
-rw-r--r--day8/part1.clj37
1 files changed, 12 insertions, 25 deletions
diff --git a/day8/part1.clj b/day8/part1.clj
index 6c8cd0f..fe06fdf 100644
--- a/day8/part1.clj
+++ b/day8/part1.clj
@@ -1,28 +1,15 @@
(require '[clojure.string :as str])
-(loop [sum 0]
- (let [line (read-line)]
- (if (empty? line)
- (println sum)
- (recur
- (+
- sum
- (reduce
- #(let [c (count %2)]
- (if (or (= 2 c) (= 3 c) (= 4 c) (= 7 c))
- (inc %1)
- %1
- )
- )
- 0
- (subvec
- (mapv (comp str/join sort) (str/split line #" "))
- 11 15
- )
- )
- )
- )
- )
- )
- )
+(->> (str/split-lines (slurp "./in"))
+ (map
+ (fn [line]
+ (as-> line $
+ (str/split $ #" ")
+ (subvec $ 11 15)
+ (filter #(.contains [2 3 4 7] (count %)) $)
+ (count $)
+ )))
+ (apply +)
+ (println)
+ )