aboutsummaryrefslogtreecommitdiffstats
path: root/day6/part2.clj
diff options
context:
space:
mode:
Diffstat (limited to 'day6/part2.clj')
-rw-r--r--day6/part2.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/day6/part2.clj b/day6/part2.clj
index cdcc3b5..ad6fe91 100644
--- a/day6/part2.clj
+++ b/day6/part2.clj
@@ -2,7 +2,7 @@
(->> (read-line)
(#(str/split % #","))
- (map #(Integer/parseInt %))
+ (map read-string)
(reduce #(update %1 %2 inc) (vec (repeat 9 0)))
(iterate
#(let [nf (conj (vec (rest %)) (first %))]