From 2ec8ded269f4a31a26529874aed0a99a14856940 Mon Sep 17 00:00:00 2001 From: Gleb Koval Date: Sat, 9 Dec 2023 01:06:21 +0000 Subject: [PATCH] Cleanup day 8 --- day8/solution.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day8/solution.sh b/day8/solution.sh index c061294..ac1a11a 100755 --- a/day8/solution.sh +++ b/day8/solution.sh @@ -70,6 +70,6 @@ do continue fi cur=$key - count=$(lcm $count $(findcount $cur $instructions "*Z")) + count=$(lcm $count $(findcount $cur $instructions *Z)) done echo "Part 2: $count" \ No newline at end of file