From aae7ad038b6625000c5e0b99d4b83a69e554e643 Mon Sep 17 00:00:00 2001 From: ajet Date: Mon, 8 Dec 2025 22:32:23 -1000 Subject: [PATCH] simplify --- 2025/src/day09.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2025/src/day09.clj b/2025/src/day09.clj index 023eb79..6e6ba00 100644 --- a/2025/src/day09.clj +++ b/2025/src/day09.clj @@ -33,7 +33,7 @@ o3 (orientation c d a) o4 (orientation c d b)] (and (not= o1 o2) (not= o3 o4)))) -(def line-segments (map vector input (conj (vec (rest input)) (first input)))) +(def line-segments (map vector input (rest input))) ;; part 2 (->> largest-squares