Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sorted() and lambda functions! solution in Clear category for Absolute Sorting by tigercat2000
def checkio(numbers_array):
# Use the normal python sorted() function to sort the users.
# We could use list.sort(), if there weren't tupples involved.
# The key parameter is a lambda function (an inline function)
# The lambda function tells the sorted() function to compare to the absolute values of each element, rather than the element itself.
numbers_array = sorted(numbers_array, key = lambda a: abs(a))
# Return the sorted 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], "Positive numbers"
assert check_it(checkio((-1, -2, -3, 0))) == [0, -1, -2, -3], "Negative numbers"
Nov. 5, 2016
Comments: