diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-30 19:55:31 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-30 19:55:31 -0500 |
commit | 8d43e37df99f280377bed90284d6ac2428334804 (patch) | |
tree | 3a5042c9af29da52b4bac38fd78b3ccde77a1dbc /day11 | |
parent | 66ed0b9d27850dc653abc8baa75884f3de311bfa (diff) |
move 2021 days to folder; update README
Diffstat (limited to 'day11')
-rw-r--r-- | day11/part1.clj | 41 | ||||
-rw-r--r-- | day11/part2.clj | 42 |
2 files changed, 0 insertions, 83 deletions
diff --git a/day11/part1.clj b/day11/part1.clj deleted file mode 100644 index 5113fd4..0000000 --- a/day11/part1.clj +++ /dev/null @@ -1,41 +0,0 @@ -(defn get-adj [in y x] - (filter - #(some? (get-in in %)) - [[(dec y) (dec x)] [(dec y) x] [(dec y) (inc x)] - [y (dec x)] [y (inc x)] - [(inc y) (dec x)] [(inc y) x] [(inc y) (inc x)]] - )) - -(defn apply-incs [in] (mapv (partial mapv inc) in)) - -(defn next-step [indata] - (loop [in (apply-incs (indata :grid)) bl (indata :blinks) y 0 x 0] - (cond - (> (get-in in [y x]) 9) - (do - (recur - (-> (reduce - (fn [i n] (update-in i n #(cond-> % (pos? %) inc))) - in - (get-adj in y x)) - (update-in [y x] #(do % 0))) - (inc bl) - 0 0)) - (< x (dec (count (first in)))) - (recur in bl y (inc x)) - (< y (dec (count in))) - (recur in bl (inc y) 0) - :else - {:grid in :blinks bl} - ) - ) - ) - -(->> (slurp "./in") - (clojure.string/split-lines) - (map (partial map #(- (int %) 48))) - (assoc {} :blinks 0 :grid) - (iterate next-step) - (#(nth % 100)) - (#(println (% :blinks)))) - diff --git a/day11/part2.clj b/day11/part2.clj deleted file mode 100644 index 4c4663c..0000000 --- a/day11/part2.clj +++ /dev/null @@ -1,42 +0,0 @@ -(defn get-adj [in y x] - (filter - #(some? (get-in in %)) - [[(dec y) (dec x)] [(dec y) x] [(dec y) (inc x)] - [y (dec x)] [y (inc x)] - [(inc y) (dec x)] [(inc y) x] [(inc y) (inc x)]] - )) - -(defn apply-incs [in] (mapv (partial mapv inc) in)) - -(defn next-step [indata] - (loop [in (apply-incs (indata :grid)) bl (indata :blinks) y 0 x 0] - (cond - (> (get-in in [y x]) 9) - (do - (recur - (-> (reduce - (fn [i n] (update-in i n #(cond-> % (pos? %) inc))) - in - (get-adj in y x)) - (update-in [y x] #(do % 0))) - (inc bl) - 0 0)) - (< x (dec (count (first in)))) - (recur in bl y (inc x)) - (< y (dec (count in))) - (recur in bl (inc y) 0) - :else - {:grid in :blinks bl} - ) - ) - ) - -(->> (slurp "./in") - (clojure.string/split-lines) - (map (partial map #(- (int %) 48))) - (assoc {} :blinks 0 :grid) - (iterate next-step) - (take-while #(pos? (apply + (flatten (% :grid))))) - (count) - (println)) - |