diff --git a/2024/src/day02.clj b/2024/src/day02.clj index 12a8594..a2617d9 100644 --- a/2024/src/day02.clj +++ b/2024/src/day02.clj @@ -20,7 +20,7 @@ ;; part 1 (->> input - (mapv get-diffs) + (map get-diffs) (filter small-diffs?) count)