Hello, I try to valid this function, but when I run, nothing appends for 30 seconds. When I try to check, I have an "ErrorUserRunSecondProcess" message. Why can't I have a good result.
My function :
def end_zeros(i: int) -> int:
result = 0
while i % 10 == 0:
i /= 10
result += 1
return result
Created at: 2021/03/02 21:31; Updated at: 2021/03/03 07:47