Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Absolute Sorting by andriutwich
checkio = lambda numbers_array: sorted(numbers_array, key=abs)
def test_function():
def check_it(array):
if not isinstance(array, (list, tuple)):
raise TypeError("The result should be a list or tuple.")
return list(array)
assert check_it(checkio(
(-20, -5, 10, 15)
)) == [-5, 10, 15, -20], "Example" # or (-5, 10, 15, -20)
assert check_it(checkio(
(1, 2, 3, 0)
)) == [0, 1, 2, 3], "Positive numbers"
assert check_it(checkio(
(-1, -2, -3, 0)
)) == [0, -1, -2, -3], "Negative numbers"
Jan. 13, 2017