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)