This commit is contained in:
David Doblas Jiménez 2022-02-21 21:34:55 +01:00
parent 5954c07891
commit 81766ea23e

View File

@ -84,9 +84,6 @@ def part_2() -> None:
if max(els) % min(els) == 0:
result.append(int(max(els) / min(els)))
break
# elif el2 % el1 == 0:
# result.append(int(el2 / el1))
# break
print(f"Sum of each row's result is {sum(result)}")