Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Absolute Sorting by Vindsor
def checkio(numbers_array):
res = list(numbers_array)
res.sort(key = abs)
return res
Feb. 21, 2014