We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
intmain(){/* Enter your code here. Read input from STDIN. Print output to STDOUT */intsize;cin>>size;vector<int>v;intele;for(inti=0;i<size;i++){cin>>ele;v.push_back(ele);}sort(v.begin(),v.end());for(autoi=v.begin();i!=v.end();i++){cout<<*i<<" ";}return0;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Vector-Sort
You are viewing a single comment's thread. Return to all comments →