Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Absolute sorting solution in Clear category for Absolute Sorting by HumanAlone
def checkio(numbers_array: tuple) -> list:
return sorted(numbers_array, key=lambda x: abs(x))
June 22, 2018