aboutsummaryrefslogtreecommitdiffstats
path: root/day10
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-10 07:35:22 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-10 07:35:22 -0500
commit18fdc49ec27e62a5da1489459c96c7994ed6262e (patch)
treec10899826a11b3ad511e9bcbeeb78c9ddfd9b45d /day10
parente6afd7fe60a24d4dcffffae42ececc15e021a3f5 (diff)
add day 10
Diffstat (limited to 'day10')
-rw-r--r--day10/part1.clj28
-rw-r--r--day10/part2.clj30
2 files changed, 58 insertions, 0 deletions
diff --git a/day10/part1.clj b/day10/part1.clj
new file mode 100644
index 0000000..2bef696
--- /dev/null
+++ b/day10/part1.clj
@@ -0,0 +1,28 @@
+(def to-closing {\{ \} \( \) \[ \] \< \>})
+(def to-score {\) 3 \] 57 \} 1197 \> 25137})
+
+(defn check-line [input]
+ (loop [open [] in input]
+ (cond
+ (empty? in)
+ nil
+ (and (contains? #{\} \) \] \>} (first in))
+ (not= (to-closing (first open)) (first in)))
+ (first in)
+ :else
+ (recur
+ (if (contains? #{\{ \( \[ \<} (first in))
+ (concat [(first in)] open)
+ (rest open))
+ (rest in)
+ ))))
+
+(->> (slurp "./in")
+ (clojure.string/split-lines)
+ (mapv vec)
+ (mapv check-line)
+ (filter some?)
+ (mapv to-score)
+ (apply +)
+ (println))
+
diff --git a/day10/part2.clj b/day10/part2.clj
new file mode 100644
index 0000000..6cd27af
--- /dev/null
+++ b/day10/part2.clj
@@ -0,0 +1,30 @@
+(def to-closing {\{ \} \( \) \[ \] \< \>})
+(def to-score {\) 1 \] 2 \} 3 \> 4})
+
+(defn check-line [input]
+ (loop [open [] in input]
+ (cond
+ (empty? in)
+ (map to-closing open)
+ (and (contains? #{\} \) \] \>} (first in))
+ (not= (to-closing (first open)) (first in)))
+ nil
+ :else
+ (recur
+ (if (contains? #{\{ \( \[ \<} (first in))
+ (concat [(first in)] open)
+ (rest open))
+ (rest in)
+ ))))
+
+(->> (slurp "./in")
+ (clojure.string/split-lines)
+ (mapv vec)
+ (mapv check-line)
+ (filter some?)
+ (mapv (partial reduce #(+ (* 5 %1) (to-score %2)) 0))
+ (sort)
+ (#(get (vec %) (quot (count %) 2)))
+ (println)
+ )
+