fix type error.

This commit is contained in:
ykiko 2024-03-29 00:38:46 +08:00
parent c908fb72d5
commit 1db1197670

View File

@ -106,6 +106,7 @@ def ulong_divmod(a: list, b: list):
if len(b) == 1:
q, r = ulong_divmodi(a, b[0])
r, _ = ulong_fromint(r)
return q, r
low = 0