Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
and next solution in Creative category for Sort Except Zero by veky
def except_zero(L):
s = iter(sorted(filter(None, L)))
return [x and next(s) for x in L]
Jan. 11, 2020
Comments: