From c9888fb208fdb1fb4dc9af9be91fafec1ed658a1 Mon Sep 17 00:00:00 2001 From: Jack Kinsey Date: Mon, 9 Dec 2019 19:30:15 -0500 Subject: [PATCH] Fix day9pt1 and add correct day9pt2 --- src/adventofcode2019/day09.clj | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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]})))))) -- 2.38.5