blob: de03bda3b8ef659278b36f300199deea9594cbfc (
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 input (->> (slurp "./in")
str/split-lines
((juxt
first
(fn [lines]
(->> lines
(drop 2)
(map #(str/split % #" -> "))
(flatten)
(apply (partial assoc {}))
))))))
(defn grow-polymer [polymer insertion-rules]
(str/join
(cons
(first polymer)
(mapcat (juxt insertion-rules second)
(for [i (range 0 (dec (count polymer)))]
(subs polymer i (+ i 2)))))))
(def growth-seq (iterate #(grow-polymer % (second input)) (first input)))
(let [freqs (vals (frequencies (nth growth-seq 10)))]
(println (- (apply max freqs) (apply min freqs))))
|