Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simply define your own sorting key solution in Clear category for Absolute Sorting by new_hoschi
def checkio(numbers_array: tuple) -> list:
return sorted(numbers_array,key=lambda x: abs(x))
April 14, 2020
Comments: