this repo has no description

util.clj: add floor-div

+5
+5
src/aoc2025/util.clj
··· 136 136 ([t p] 137 137 (let [tm {:4 adj4 :8 adj8}] 138 138 (mapv #(vec+ p %) (get tm t))))) 139 + 140 + (defn floor-div 141 + "Divides x by y, flooring and converting result to an int" 142 + [a b] 143 + (int (Math/floor (/ a b))))