diff --git a/2025/src/day06.clj b/2025/src/day06.clj index c43e31e..0eb21e0 100644 --- a/2025/src/day06.clj +++ b/2025/src/day06.clj @@ -1,8 +1,7 @@ (ns day06 (:require input-manager)) -(def input - (input-manager/get-input 2025 6)) +(def input (input-manager/get-input 2025 6)) (def num-line? (comp not #{\* \+} first)) (def nums-raw (take-while num-line? input))