blob: cdd4a430417d6dead6167d559ca9d509a91c7812 (
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
|
(require '[clojure.string :as str])
(def caves (->> (slurp "./in")
(str/split-lines)
(map #(str/split % #"-"))
(map (partial map str))
(#(concat % (map reverse %)))
))
(defn get-caves-forward [klst]
(map #(cons (second %) klst)
(filter
#(or (< (int (first (second %))) 96)
(not-any? (partial = (second %)) klst))
(filter #(= (first %) (first klst)) caves)
)))
(loop [lst (get-caves-forward ["start"]) ms '()]
(let [nxt (->> lst
(map get-caves-forward)
(apply concat))
mtchs (concat ms (filter #(= (first %) "end") nxt))
nxtlst (filter #(not= (first %) "end") nxt)]
(if (empty? nxtlst)
(println (count mtchs))
(recur nxtlst mtchs))))
|