Python: List: Sort

Write a function that takes a list of numbers returns another list where the values of original list sorted in descending order. Note that Python built-in functions for sorting cannot be used.


sort([8,10, 28, 2, 1, 0, -100]) -> [28, 10, 8, 2, 1, 0, -100]

Test 1    

Test 2    

Test 3    

Test 4    

Test 5    

Test 6    

Test 7    

Test 8