diff --git a/2024/src/day02.clj b/2024/src/day02.clj index 6c65a93..ee0e33d 100644 --- a/2024/src/day02.clj +++ b/2024/src/day02.clj @@ -1,11 +1,12 @@ (ns day02 (:require - [clojure.string :as str])) - -(def raw-input (str/split-lines "")) - -(def input (->> raw-input - (map identity))) + [input-manager :refer [get-input]] + [core :as c])) +(do + (def input + (->> (get-input 1) + (map identity))) + input) ;; part 1 (->> input)