From 93828c607fc3188e024f006b9fa1ebbebfacdaf7 Mon Sep 17 00:00:00 2001 From: Jack Kinsey Date: Thu, 12 Dec 2019 19:14:57 -0500 Subject: [PATCH] Test day12pt1 --- src/adventofcode2019/day12.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adventofcode2019/day12.clj b/src/adventofcode2019/day12.clj index 28ad0b2..7326e42 100644 --- a/src/adventofcode2019/day12.clj +++ b/src/adventofcode2019/day12.clj @@ -42,7 +42,7 @@ (mapv velocity (reduce apply-gravity bodies all-pairs)))) (defn day12 [] - (let [input (map parse-coords (get-list-from-file (input-file))) + (let [input (mapv parse-coords (get-list-from-file (input-file))) simulate (iterate step-simulation input)] (part1 (reduce + (map total-energy (nth simulate 1000)))) #_(part2))) -- 2.38.5