From e922e1443687d277d12ae6e98cf8f0a2b95482d5 Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Wed, 6 Dec 2023 08:05:10 -0500 Subject: [PATCH] fix comment --- 2023/src/day06.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2023/src/day06.clj b/2023/src/day06.clj index 07b0376..3e2b31c 100644 --- a/2023/src/day06.clj +++ b/2023/src/day06.clj @@ -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)