From 1cd6a07cf8c324beaf4e80357b6c52503ef7fc3d Mon Sep 17 00:00:00 2001 From: Adam Jeniski <45019515+Ajetski@users.noreply.github.com> Date: Sun, 19 Oct 2025 11:49:57 -0400 Subject: [PATCH] golf --- 2024/src/day19.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/2024/src/day19.clj b/2024/src/day19.clj index 694eb4d..3a3ea6d 100644 --- a/2024/src/day19.clj +++ b/2024/src/day19.clj @@ -22,8 +22,7 @@ (mapv (constantly 0) puzzle)) last)) -(let [[w _ & p] - (input-manager/get-input 2024 19)] +(let [[w _ & p] (input-manager/get-input 2024 19)] (def words (into #{} (str/split w #", "))) (def puzzles p))