aboutsummaryrefslogtreecommitdiffstats
path: root/day13/part1.clj
diff options
context:
space:
mode:
Diffstat (limited to 'day13/part1.clj')
-rw-r--r--day13/part1.clj30
1 files changed, 0 insertions, 30 deletions
diff --git a/day13/part1.clj b/day13/part1.clj
deleted file mode 100644
index c3f08d4..0000000
--- a/day13/part1.clj
+++ /dev/null
@@ -1,30 +0,0 @@
-(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)))
-