(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!)))