diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-12-08 09:55:12 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-12-08 09:55:12 -0500 |
commit | cdde63a7977e365e4a53ace6ad5037a5ba79b015 (patch) | |
tree | c1c3fc7a89aa2db551f7f903ae65397aa5c0dbcc /day8/part1.clj | |
parent | 0b3e007095b6c478b5c250ce01ca79a8e9533c50 (diff) |
add day 8
Diffstat (limited to 'day8/part1.clj')
-rw-r--r-- | day8/part1.clj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/day8/part1.clj b/day8/part1.clj new file mode 100644 index 0000000..6c8cd0f --- /dev/null +++ b/day8/part1.clj @@ -0,0 +1,28 @@ +(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 + ) + ) + ) + ) + ) + ) + ) + |