aboutsummaryrefslogtreecommitdiffstats
path: root/day13
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-13 08:01:32 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-13 08:01:32 -0500
commit55387461c67497e3fca9dd9d675d558745563c14 (patch)
tree9556c49d24712fe9dd097c463a8fd3f48c207118 /day13
parentc999ec812427df83f4e7c22b00b1abd8c04ef310 (diff)
add day 13
Diffstat (limited to 'day13')
-rw-r--r--day13/part1.clj41
-rw-r--r--day13/part2.clj45
2 files changed, 86 insertions, 0 deletions
diff --git a/day13/part1.clj b/day13/part1.clj
new file mode 100644
index 0000000..bc7bef6
--- /dev/null
+++ b/day13/part1.clj
@@ -0,0 +1,41 @@
+(require '[clojure.string :as str])
+
+(def input (->> (slurp "./in")
+ (str/split-lines)
+ (split-with not-empty)))
+(def points (->> (first input)
+ (map #(str/split % #","))
+ (map (partial map read-string))
+ (set)))
+(def folds (->> (rest (second input))
+ (map #(str/split % #"="))
+ (map #(do [(last (first %)) (read-string (second %))]))))
+
+(loop [fds (take 1 folds) pts points]
+ (if (empty? fds)
+ (println (count pts))
+ (recur
+ (rest fds)
+ (let [ins (first fds) chg (second ins)]
+ (if (= \x (first ins))
+ (reduce
+ #(conj %1
+ (if (< (first %2) chg)
+ %2
+ (seq [(- (first %2) (* 2 (- (first %2) chg))) (second %2)])))
+ #{}
+ pts)
+ (reduce
+ #(conj %1
+ (if (< (second %2) chg)
+ %2
+ (seq [(first %2) (- (second %2) (* 2 (- (second %2) chg)))])
+ ))
+ #{}
+ pts)
+ )
+ )
+ )
+ )
+ )
+
diff --git a/day13/part2.clj b/day13/part2.clj
new file mode 100644
index 0000000..89f011d
--- /dev/null
+++ b/day13/part2.clj
@@ -0,0 +1,45 @@
+(require '[clojure.string :as str])
+
+(def input (->> (slurp "./in")
+ (str/split-lines)
+ (split-with not-empty)))
+(def points (->> (first input)
+ (map #(str/split % #","))
+ (map (partial map read-string))
+ (set)))
+(def folds (->> (rest (second input))
+ (map #(str/split % #"="))
+ (map #(do [(last (first %)) (read-string (second %))]))))
+
+(defn print-grid [pts]
+ (doseq [p pts] (println (str/join [(first p) "," (second p)])))
+ )
+
+(loop [fds folds pts points]
+ (if (empty? fds)
+ (print-grid pts)
+ (recur
+ (rest fds)
+ (let [ins (first fds) chg (second ins)]
+ (if (= \x (first ins))
+ (reduce
+ #(conj %1
+ (if (< (first %2) chg)
+ %2
+ (seq [(- (first %2) (* 2 (- (first %2) chg))) (second %2)])))
+ #{}
+ pts)
+ (reduce
+ #(conj %1
+ (if (< (second %2) chg)
+ %2
+ (seq [(first %2) (- (second %2) (* 2 (- (second %2) chg)))])
+ ))
+ #{}
+ pts)
+ )
+ )
+ )
+ )
+ )
+