#include<bits/stdc++.h>
using namespace std;
int main(){
vector<int>arr={1,2,5,4};
sort(arr.begin(),arr.end());
}
Built With
- cpp
Sort List
#include<bits/stdc++.h>
using namespace std;
int main(){
vector<int>arr={1,2,5,4};
sort(arr.begin(),arr.end());
}
Log in or sign up for Devpost to join the conversation.