Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
for and items.count solution in Clear category for Move Zeros by kdim
def move_zeros(items: list[int]) -> list[int]:
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!")
Sept. 27, 2022
Comments: