[13.2, Python] Remove debug print statement

This commit is contained in:
akp 2020-12-15 17:39:19 +00:00
parent 1855593545
commit abf0d2ac99
No known key found for this signature in database
GPG key ID: D3E7EAA31B39637E

View file

@ -26,7 +26,6 @@ def partTwo(instr: str) -> int:
# int required for pow function and the division *should* produce a whole number anyway
Ni = int(n / ni)
yi = pow(Ni, -1, ni) # https://stackoverflow.com/a/9758173
print(Ni, ni, yi)
sigma_x += bi * Ni * yi
return sigma_x % n