Question

Write a function that sorts the given list of numbers in descending order?

Login to Submit

Examples

Input: [4, 3, 2, 1]
Output: [4, 3, 2, 1]

Input: [5, 1, 7, 8]
Output: [8, 7, 5, 1]

Input: [1, 2, 3]
Output: [3, 2, 1]