From 63f5cf5d02912fae52c28ef19e2eb75c52e83fd1 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 1 Dec 2024 12:37:26 -0500 Subject: [PATCH] preinit day2 --- 2024/src/day02.clj | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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)