Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Move Zeros by mikaeldovbnia
def move_zeros(items):
return [i for i in items if i] + [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!")
Feb. 1, 2023