Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Absolute Sorting by radekj
def checkio(numbers_array):
return sorted(numbers_array, key=abs)
#These "asserts" using only for self-checking and not necessary for auto-testing
May 19, 2014