mirror of
https://github.com/pocketpy/pocketpy
synced 2025-11-09 21:20:17 +00:00
remove extra zero.
This commit is contained in:
parent
df33996473
commit
1623d5fb87
@ -130,6 +130,7 @@ def ulong_divmod(a: list, b: list):
|
||||
while ulong_cmp(a, ulong_mul(b, low)) >= 0:
|
||||
q = ulong_add(q, low)
|
||||
a = ulong_sub(a, ulong_mul(b, low))
|
||||
ulong_unpad_(q)
|
||||
return q, a
|
||||
|
||||
def ulong_floordivi(a: list, b: int):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user