aboutsummaryrefslogtreecommitdiffstats
path: root/day13/part1.clj
blob: c3f08d4b3e8334d01183d6faef1ac06450e2f88b (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
29
30
(require '[clojure.string :as str])

(def input (->> (slurp "./in")
                (str/split-lines)
                (split-with not-empty)
                ((juxt
                  (fn [lst]
                    (reduce
                      #(conj %1 (mapv read-string (str/split %2 #",")))
                      #{} (first lst)))
                  (fn [lst]
                    (->> (second lst)
                         (drop 1)
                         (map #(-> %
                                   (str/split #"=")
                                   (update 0 (comp {\x 0 \y 1} last))
                                   (update 1 read-string)))
                         (first)
                         ))))))

(defn fold-point [idx chg pt]
  (cond-> pt (> (get pt idx) chg) (update idx #(- % (* 2 (- % chg))))))

(let [instruction (second input)]
  (->> (first input)
       (map (partial fold-point (first instruction) (second instruction)))
       (distinct)
       (count)
       (println)))