Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Key solution in Clear category for Absolute Sorting by bryukh
def checkio(numbers_array):
"""
The magic of the key :)
"""
return tuple(sorted(numbers_array, key=abs))
Feb. 20, 2014
Comments: