Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Sort by key solution in Clear category for Move Zeros by tokareva.anastasiya.tch
def move_zeros(items: list[int]) -> list[int]:
return sorted(items, key=lambda x: str(x) == "0")
Sept. 29, 2022
Comments: