Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Sorted solution in Clear category for Absolute Sorting by KirillovaV
def checkio(numbers_array: tuple) -> list:
return sorted(numbers_array, key=abs)
Jan. 18, 2021