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