Add correct day8pt1, day8pt2
[adventofcode2019.git] / src / adventofcode2019 / template.clj
index 2e58ab0491cd82481490bd3613dad2727e9ff6a2..c239cb5d8ad2b24848a4eeea2da62b177dd87754 100644 (file)
@@ -1,8 +1,10 @@
 (ns adventofcode2019.day00
     [:require [adventofcode2019.lib :refer :all]
               [clojure.string :as str]
+              [clojure.core.match :refer [match]]
               [clojure.math.combinatorics :as combo]])
 
 (defn day00 []
   (let [input (map parse-int (get-list-from-file (input-file)))] 
-    (comment Your code here!)))
+    #_(part1)
+    #_(part2)))