blob: 1424fd8a230669d0eeb3c74a32c4895d1c60c60d (
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
|
(def to-closing {\{ \} \( \) \[ \] \< \>})
(def to-score {\) 3 \] 57 \} 1197 \> 25137})
(defn check-line [input]
(loop [in input open '()]
(cond
(empty? in)
nil
(and (contains? #{\} \) \] \>} (first in))
(not= (to-closing (first open)) (first in)))
(first in)
:else
(recur
(rest in)
(if (contains? #{\{ \( \[ \<} (first in))
(conj open (first in))
(rest open)
)))))
(->> (slurp "./in")
(clojure.string/split-lines)
(map (comp to-score check-line vec))
(filter some?)
(apply +)
(println))
|