diff --git a/2023/src/day09.clj b/2023/src/day09.clj index 3dac277..12712a4 100644 --- a/2023/src/day09.clj +++ b/2023/src/day09.clj @@ -10,8 +10,7 @@ (let [last-line (peek pyramid)] (if (every? zero? last-line) pyramid - (recur (conj pyramid - (mapv - (rest last-line) last-line))))))) + (recur (conj pyramid (mapv - (rest last-line) last-line))))))) (defn solve [reduction] (->> (get-puzzle-input 9)