fix comment

This commit is contained in:
Adam Jeniski
2023-12-06 08:05:10 -05:00
parent 720d668620
commit e922e14436
+1 -1
View File
@@ -5,7 +5,7 @@
(def input (get-puzzle-input 6))
(defn solve [num-str-lists] ; takes a list of list of nums-string representing time and distance
(defn solve [num-str-lists] ; takes a list of list of number-strings representing time and distance
(->> (map (partial map #(Long/parseLong %)) num-str-lists)
(apply zipmap)
(map (fn [[ms record]] (->> (range 1 ms)