]>
Commit | Line | Data |
---|---|---|
9046fc14 JK |
1 | (ns adventofcode2019.day00 |
2 | [:require [adventofcode2019.lib :refer :all] | |
2292e941 | 3 | [adventofcode2019.intcode :as i] |
9046fc14 | 4 | [clojure.string :as str] |
3e582bb0 | 5 | [clojure.core.match :refer [match]] |
9046fc14 JK |
6 | [clojure.math.combinatorics :as combo]]) |
7 | ||
8 | (defn day00 [] | |
9 | (let [input (map parse-int (get-list-from-file (input-file)))] | |
73515441 JK |
10 | #_(part1) |
11 | #_(part2))) |