mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 09:23:17 -09:00
preinit day2
This commit is contained in:
parent
b07f377f78
commit
63f5cf5d02
@ -1,11 +1,12 @@
|
|||||||
(ns day02
|
(ns day02
|
||||||
(:require
|
(:require
|
||||||
[clojure.string :as str]))
|
[input-manager :refer [get-input]]
|
||||||
|
[core :as c]))
|
||||||
(def raw-input (str/split-lines ""))
|
(do
|
||||||
|
(def input
|
||||||
(def input (->> raw-input
|
(->> (get-input 1)
|
||||||
(map identity)))
|
(map identity)))
|
||||||
|
input)
|
||||||
|
|
||||||
;; part 1
|
;; part 1
|
||||||
(->> input)
|
(->> input)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user