2e58ab0491cd82481490bd3613dad2727e9ff6a2
[adventofcode2019.git] / src / adventofcode2019 / template.clj
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!)))