Sorted key solution in Clear category for Absolute Sorting by Dudd1ts
def checkio(numbers_array): return sorted(numbers_array, key=abs)
May 9, 2015