how to sort array in descending order in c++ using sort code example
Example 1: how to sort in descending order c++
int arr[10];
int length = sizeof(arr)/sizeof(arr[0]);
sort(arr, arr+length, greater<int>());
Example 2: sort list in python
List_name.sort()
This will sort the given list in ascending order.