All problems
EasyLists
Sort a list
Sort a list in descending order using `sorted` with `reverse=True`.
- #sort
Sample input
[3, 1, 4, 1, 5, 9, 2, 6]
Sample output
[9, 6, 5, 4, 3, 2, 1, 1]
sort-reverse.py
Output
Press "Run code" to execute.
Loading…
Sort a list in descending order using `sorted` with `reverse=True`.
[3, 1, 4, 1, 5, 9, 2, 6]
[9, 6, 5, 4, 3, 2, 1, 1]
Press "Run code" to execute.