From: Jack Kinsey Date: Tue, 10 Dec 2019 00:30:15 +0000 (-0500) Subject: Fix day9pt1 and add correct day9pt2 X-Git-Url: http://git.jkinsey.net/?a=commitdiff_plain;h=c9888fb208fdb1fb4dc9af9be91fafec1ed658a1;p=adventofcode2019.git Fix day9pt1 and add correct day9pt2 --- diff --git a/src/adventofcode2019/day09.clj b/src/adventofcode2019/day09.clj index 495b336..48a4a72 100644 --- a/src/adventofcode2019/day09.clj +++ b/src/adventofcode2019/day09.clj @@ -1,11 +1,8 @@ (ns adventofcode2019.day09 [:require [adventofcode2019.lib :refer :all] - [adventofcode2019.intcode :as i] - [clojure.string :as str] - [clojure.core.match :refer [match]] - [clojure.math.combinatorics :as combo]]) + [adventofcode2019.intcode :as i]]) (defn day09 [] (let [input (mapv parse-int (get-list-from-file (input-file) #","))] (part1 (:output (i/intcode (i/build-state input {:input [1]})))) - #_(part2))) + (part2 (:output (i/intcode (i/build-state input {:input [2]}))))))