Fix day6pt1 and add correct day6pt2
[adventofcode2019.git] / src / adventofcode2019 / template.clj
1 (ns adventofcode2019.day00
2 [:require [adventofcode2019.lib :refer :all]
3 [clojure.string :as str]
4 [clojure.core.match :refer [match]]
5 [clojure.math.combinatorics :as combo]])
6
7 (defn day00 []
8 (let [input (map parse-int (get-list-from-file (input-file)))]
9 (comment Your code here!)))