Add untested day6pt1
[adventofcode2019.git] / src / adventofcode2019 / template.clj
CommitLineData
cca08f5d
JK
1(ns adventofcode2019.day00
2 [:require [adventofcode2019.lib :refer :all]
3 [clojure.string :as str]
4 [clojure.math.combinatorics :as combo]])
5
6(defn day00 []
7 (let [input (map parse-int (get-list-from-file (input-file)))]
8 (comment Your code here!)))