Refactor Intcode into a library
[adventofcode2019.git] / src / adventofcode2019 / template.clj
CommitLineData
cca08f5d
JK
1(ns adventofcode2019.day00
2 [:require [adventofcode2019.lib :refer :all]
c0464c3a 3 [adventofcode2019.intcode :as i]
cca08f5d 4 [clojure.string :as str]
2bdba715 5 [clojure.core.match :refer [match]]
cca08f5d
JK
6 [clojure.math.combinatorics :as combo]])
7
8(defn day00 []
9 (let [input (map parse-int (get-list-from-file (input-file)))]
4ddb1aae
JK
10 #_(part1)
11 #_(part2)))