From 5d1bf4161a21ac1819202174eeab08c9ed742645 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 5 Dec 2021 19:22:38 -0500 Subject: [PATCH] day5: part2 build map rather than 2d vec --- day5/part2.clj | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/day5/part2.clj b/day5/part2.clj index c374716..d324618 100644 --- a/day5/part2.clj +++ b/day5/part2.clj @@ -27,7 +27,11 @@ ) (defn mark-coord [cmap x y] - (update cmap y #(update % x inc)) + (update + cmap + [x y] + #(if (nil? %) 0 (inc %)) + ) ) (defn mark-coords [cmap x1 y1 x2 y2] @@ -62,27 +66,18 @@ ) ) -(defn empty-map [] - (vec - (repeat 1000 - (vec (repeat 1000 0)) - ) - ) - ) - (def finished-map (reduce #(apply (partial mark-coords %1) %2) - (empty-map) + {} (read-all-coords) ) ) (->> finished-map - (flatten) - (map dec) - (filter pos?) - (count) - (println) - ) + (vals) + (filter pos?) + (count) + (println) + )