From b07f377f7808adefa581417412aa8a7d26b08788 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 1 Dec 2024 12:33:54 -0500 Subject: [PATCH] format --- 2024/src/day01.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2024/src/day01.clj b/2024/src/day01.clj index 0c04bde..f586999 100644 --- a/2024/src/day01.clj +++ b/2024/src/day01.clj @@ -5,8 +5,8 @@ (def input (->> (get-input 1) (map (c/compose #(re-seq #"(\d+)\s+(\d+)" %) - first rest ; only get match groups - #(mapv parse-long %))) + first rest ; only get match groups + #(mapv parse-long %))) (into {}) ((juxt keys vals))))