Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ELEMENTARY - "End Zeros" solution in Uncategorized category for End Zeros by jsg-inet
def end_zeros(num: int) -> int:
# your code here
num_txt=str(num)
long_num=len(num_txt)
num_zeros=0
i=long_num
while i>0:
i+=-1
if num_txt[i]=='0':
num_zeros += 1
else:
break
return num_zeros
if __name__ == '__main__':
print("Example:")
print(end_zeros(0))
# These "asserts" are used for self-checking and not for an auto-testing
assert end_zeros(0) == 1
assert end_zeros(1) == 0
assert end_zeros(10) == 1
assert end_zeros(101) == 0
assert end_zeros(245) == 0
assert end_zeros(100100) == 2
print("Coding complete? Click 'Check' to earn cool rewards!")
June 9, 2021
Comments: