Solution to problem 3 in Python

This commit is contained in:
David Doblas Jiménez 2022-02-17 09:22:47 +01:00
parent b3c70d7c3d
commit b04813d52a

View File

@ -110,7 +110,7 @@ def part_2() -> None:
if filled_grid[row][col] == 1:
counts += 1
if counts == (int(width) * int(height)):
print(f"The ID that does not overlap is {claim_id}")
print(f"The claim ID that does not overlap is {claim_id}")
if __name__ == "__main__":