sort(v.begin(),v.end(),greater <int>());↵
it is same as OR ↵
sort(v.rbegin(),v.rend());↵
OR↵
sort(v.begin(),v.end()); reverse(v.begin(),v.end());↵
All these are the same
sort(v.rbegin(),v.rend());↵
OR↵
sort(v.begin(),v.end()); reverse(v.begin(),v.end());↵
All these are the same