Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
bubble sort solution in Clear category for Absolute Sorting by checinski.szymon
import math
def checkio(numbers_array):
i = 0
numbers_array = list(numbers_array)
while i < len(numbers_array):
flag = 0
j = len(numbers_array) - 1
while j > i:
if math.fabs(numbers_array[j - 1]) > math.fabs(numbers_array[j]):
temp = numbers_array[j - 1]
numbers_array[j - 1] = numbers_array[j]
numbers_array[j] = temp
flag = 1
j -= 1
if flag == 0:
return numbers_array
i += 1
print(numbers_array)
return numbers_array
#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], "Negative numbers"
assert check_it(checkio((1, 2, 3, 0))) == [0, 1, 2, 3], "Positive numbers"
Oct. 22, 2016