Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Sort Except Zero by dimer3799
from typing import Iterable
def except_zero(items: list) -> Iterable:
# your code here
f = items.copy()
i = 0
while i < len(items):
if items[i] == 0:
del items[i]
continue
i += 1
items.sort()
for i in range(0, len(f)):
if f[i] == 0:
items.insert(i,f[i])
return items
if __name__ == '__main__':
print("Example:")
print(list(except_zero([5, 3, 0, 0, 4, 1, 4, 0, 7])))
# These "asserts" are used for self-checking and not for an auto-testing
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("Coding complete? Click 'Check' to earn cool rewards!")
April 2, 2020