Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Absolute Sorting by MaciejKrasny
def checkio(numbers_array):
#tworze listę z posortowanymi wg w. bezwzlędnej liczbami
lista= sorted(numbers_array, key=abs)
return lista
Oct. 26, 2016