Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Absolute Sorting by MartynaDziubalka
import math
def checkio(numbers_array):
list = []
for i in numbers_array:
list.append(i)
for x in range(0, len(list)):
for y in range(0, len(list)):
if x != y and math.fabs(list[x]) <= math.fabs(list[y]):
a = list[x]
b = list[y]
list[x] = b
list[y] = a
return list
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
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. 27, 2016