Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Absolute Sorting by jtarnowska
def checkio(numbers_array):
lists = []
new_list = []
for k in numbers_array:
lists.append(k)
print(lists)
abs_lists = []
for l in lists:
abs_lists.append(abs(l))
print(abs_lists)
for i in range (len(lists)):
for numbers in lists:
if abs(numbers) == min(abs_lists):
j = numbers
new_list.append(j)
lists.remove(j)
abs_lists.remove(abs(numbers))
break;
return(new_list)
#for number in numbers_array:
return new_list
#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], "Positive numbers"
assert check_it(checkio((-1, -2, -3, 0))) == [0, -1, -2, -3], "Negative numbers"
Jan. 10, 2017