Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sort Except Zero by poa
from collections.abc import Iterable
def except_zero(items: list[int]) -> Iterable[int]:
N = len(items)
while N > 1:
N -= 1
last_i = N
if items[last_i] == 0:
continue
last_v = items[last_i]
max_v = max(items[:last_i])
max_i = items.index(max_v)
if max_v > last_v:
items[last_i], items[max_i] = max_v, last_v
print(items)
return items
print("Example:")
print(list(except_zero([5, 3, 0, 0, 4, 1, 4, 0, 7])))
# These "asserts" are used for self-checking
assert list(except_zero([5, 3, 0, 0, 4, 1, 4, 0, 7])) == [1, 3, 0, 0, 4, 4, 5, 0, 7]
assert list(except_zero([0, 2, 3, 1, 0, 4, 5])) == [0, 1, 2, 3, 0, 4, 5]
assert list(except_zero([0, 0, 0, 1, 0])) == [0, 0, 0, 1, 0]
assert list(except_zero([4, 5, 3, 1, 1])) == [1, 1, 3, 4, 5]
assert list(except_zero([0, 0])) == [0, 0]
print("The mission is done! Click 'Check Solution' to earn rewards!")
March 9, 2024
Comments: