Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sorted solution in Clear category for Move Zeros by kdim
def move_zeros(items: list[int]) -> list[int]:
return sorted(items, key=lambda x: x == 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: