diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-12-05 19:22:38 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-12-05 19:22:38 -0500 |
commit | 5d1bf4161a21ac1819202174eeab08c9ed742645 (patch) | |
tree | 0c02a0671a016517bb5d5408eac38a299c7e9176 | |
parent | 68c02872a81d598b5067200854f9c46fd9f06876 (diff) |
day5: part2 build map rather than 2d vec
-rw-r--r-- | day5/part2.clj | 27 |
1 files 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) + ) |