Correct comment

This commit is contained in:
Isaac Shoebottom 2024-12-03 14:50:36 -04:00
parent 5d11435d9e
commit f92209c366

View File

@ -29,9 +29,9 @@ def part_two():
total += int(match.group(1)) * int(match.group(2)) total += int(match.group(1)) * int(match.group(2))
continue continue
if do_match > dont_match: # Do 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 continue
else: else: # Don't
continue continue
print(total) print(total)