From f92209c366f338d794705c85b2efba89632c34fd Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Tue, 3 Dec 2024 14:50:36 -0400 Subject: [PATCH] Correct comment --- 2024/03/solution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2024/03/solution.py b/2024/03/solution.py index e918f29..cb12636 100644 --- a/2024/03/solution.py +++ b/2024/03/solution.py @@ -29,9 +29,9 @@ def part_two(): total += int(match.group(1)) * int(match.group(2)) continue if do_match > dont_match: # Do - total += int(match.group(1)) * int(match.group(2)) # Don't + total += int(match.group(1)) * int(match.group(2)) continue - else: + else: # Don't continue print(total)