aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-06 18:28:24 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-06 18:28:24 -0500
commit0e3b0f4732541d14b2fbc1e740d5e86206df6e9a (patch)
tree65ddaff735a166895f02139937715951499a9ab1
parent4db3315d89be076e7182787a4a098d244690949e (diff)
day6: learned read-string
-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 %))]