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]