211c28c340
* added new python exercise and solution * add sort exercise and solutions * changed heading1 * fixed header description
7 lines
238 B
Markdown
7 lines
238 B
Markdown
## Sort Descending
|
|
|
|
1. write a function that sorts the following list of list without using the `sorted()` and `.sort()`
|
|
function in descending order
|
|
|
|
- list = [[1, 2, 3], [2, 4, 4], [5, 5, 5]] -> [[5, 5, 5], [2, 4, 4], [1, 2, 3]]
|