aboutsummaryrefslogtreecommitdiffstats
path: root/day9/part2.clj
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-11-30 19:55:31 -0500
committerClyne Sullivan <clyne@bitgloo.com>2022-11-30 19:55:31 -0500
commit8d43e37df99f280377bed90284d6ac2428334804 (patch)
tree3a5042c9af29da52b4bac38fd78b3ccde77a1dbc /day9/part2.clj
parent66ed0b9d27850dc653abc8baa75884f3de311bfa (diff)
move 2021 days to folder; update README
Diffstat (limited to 'day9/part2.clj')
-rw-r--r--day9/part2.clj45
1 files changed, 0 insertions, 45 deletions
diff --git a/day9/part2.clj b/day9/part2.clj
deleted file mode 100644
index 3030c4e..0000000
--- a/day9/part2.clj
+++ /dev/null
@@ -1,45 +0,0 @@
-(require '[clojure.set])
-
-(defn get-adj
- "Gets vector of coords surrounding (x, y)."
- [y x] [[(dec y) x] [(inc y) x] [y (dec x)] [y (inc x)]])
-
-(defn basin-continues?
- "Determines if `b` is a continuation of the basin that includes `a`."
- [a b] (and (some? b) (not= b 9) (> b a)))
-
-(defn basin-bottom?
- "Determines if point `p` in `hmap` is the bottom of a basin surrounded by
- points `adj`."
- [hmap p adj]
- (every?
- #(let [q (get-in hmap %)] (or (nil? q) (< (get-in hmap p) q)))
- adj
- ))
-
-(defn find-basin
- "If point `yx` in `hmap` is in a basin (determined using `adj`), return a
- list of points in the basin that are above `yx`."
- [hmap yx adj]
- (let [res (filter #(basin-continues? (get-in hmap yx)
- (get-in hmap %))
- adj)]
- (apply (partial clojure.set/union res)
- (map #(set (find-basin hmap % (apply get-adj %))) res)
- )))
-
-(->> (slurp "./in")
- (clojure.string/split-lines)
- (mapv vec)
- (mapv (partial mapv #(- (int %) 48)))
- (#(for [y (range 0 (count %))
- x (range 0 (count (first %)))
- :let [adj (get-adj y x)]
- :when (basin-bottom? % [y x] adj)]
- (inc (count (find-basin % [y x] adj)))))
- (sort >)
- (take 3)
- (apply *)
- (println)
- )
-