Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
use str, len() and rstrip() solution in Clear category for End Zeros by _Jan_
def end_zeros(a: int) -> int:
return len(str(a))-len(str(a).rstrip("0"))
print("Example:")
print(end_zeros(10))
# These "asserts" are used for self-checking
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("The mission is done! Click 'Check Solution' to earn rewards!")
Jan. 18, 2024
Comments: