aboutsummaryrefslogtreecommitdiffstats
path: root/day10/part2.clj
blob: 49c913604ba6038ca339fe29fe3135aefecb6973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(def to-closing {\{ \} \( \) \[ \] \< \>})
(def to-score {\) 1 \] 2 \} 3 \> 4})

(defn check-line [input]
  (loop [in input open '()]
    (cond
      (empty? in)
      (map to-closing open)
      (and (contains? #{\} \) \] \>} (first in))
           (not= (to-closing (first open)) (first in)))
      nil
      :else
      (recur
        (rest in)
        (if (contains? #{\{ \( \[ \<} (first in))
          (conj open (first in))
          (rest open)
          )))))

(->> (slurp "./in")
     (clojure.string/split-lines)
     (map (comp check-line vec))
     (filter some?)
     (map (partial reduce #(+ (* 5 %1) (to-score %2)) 0))
     (sort)
     (#(nth % (quot (count %) 2)))
     (println))