Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Move Zeros by mortonfox
def move_zeros(items: list[int]) -> list[int]:
return [v for v in items if v] + [0] * items.count(0)
print("Example:")
print(move_zeros([0, 1, 0, 3, 12]))
assert move_zeros([0, 1, 0, 3, 12]) == [1, 3, 12, 0, 0]
assert move_zeros([0]) == [0]
print("The mission is done! Click 'Check Solution' to earn rewards!")
Sept. 9, 2022