mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 17:23:17 -09:00
16 lines
200 B
Clojure
16 lines
200 B
Clojure
(ns day02
|
|
(:require
|
|
[clojure.string :as str]))
|
|
|
|
(def raw-input (str/split-lines ""))
|
|
|
|
(def input (->> raw-input
|
|
(map identity)))
|
|
|
|
;; part 1
|
|
(->> input)
|
|
|
|
;; part 2
|
|
;; (->> input)
|
|
|