preinit day2

This commit is contained in:
Adam Jeniski 2024-12-01 12:37:26 -05:00
parent b07f377f78
commit 63f5cf5d02

View File

@ -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)