aboutsummaryrefslogtreecommitdiffstats
path: root/day13
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-13 12:09:40 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-13 12:09:40 -0500
commitb2d8d90014bb28ccdb4eef0fd9b34ad74237b76c (patch)
tree82d552508d021893a9ed1d797891237c87a6d3ed /day13
parentc54de0ebc64a60184f610993b1538006b81c16c3 (diff)
day13: print-grid, add partboth.clj
Diffstat (limited to 'day13')
-rw-r--r--day13/partboth.clj49
1 files changed, 49 insertions, 0 deletions
diff --git a/day13/partboth.clj b/day13/partboth.clj
new file mode 100644
index 0000000..c24980d
--- /dev/null
+++ b/day13/partboth.clj
@@ -0,0 +1,49 @@
+(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)))
+ ))))))
+
+(defn fold-point [idx chg pt]
+ (cond-> pt (> (get pt idx) chg) (update idx #(- % (* 2 (- % chg))))))
+
+(defn print-grid [pts]
+ (let [xmax (inc (apply max (map first pts)))
+ ymax (inc (apply max (map second pts)))]
+ (doseq [y (range 0 ymax)]
+ (println
+ (str/join
+ (for [x (range 0 xmax)] (if (contains? pts [x y]) \@ \ ))
+ )))))
+
+; Part 1
+(let [instruction (first (second input))]
+ (->> (first input)
+ (map (partial fold-point (first instruction) (second instruction)))
+ (distinct)
+ (count)
+ (println)))
+
+; Part 2
+(print-grid
+ (apply
+ (partial
+ reduce
+ #(let [ins (first %2)]
+ (set (map (partial fold-point (first %2) (second %2)) %1))))
+ input
+ ))
+