python 3
Sorting in descending order In the provided file, implement the void function reverse_sort (values), which accepts a list and reverse sorts it (i.e. sorts it in descending order). Make sure that your solution passes the provided test cases in main(). Hint: Use the built-in list methods to avoid re-writing a sorting algorithm. Show transcribed image text Sorting in descending order In the provided file, implement the void function reverse_sort (values), which accepts a list and reverse sorts it (i.e. sorts it in descending order). Make sure that your solution passes the provided test cases in main(). Hint: Use the built-in list methods to avoid re-writing a sorting algorithm.
Expert Answer
Answer to Sorting in descending order In the provided file, implement the void function reverse_sort (values), which accepts a lis…