mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 05:23:17 -09:00
preinit day2
This commit is contained in:
parent
b07f377f78
commit
63f5cf5d02
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user