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.
#include<cmath>#include<cstdio>#include<vector>#include<iostream>#include<algorithm>usingnamespacestd;intmain(){/* Enter your code here. Read input from STDIN. Print output to STDOUT */intn,ele;vector<int>v;cin>>n;for(inti=1;i<=n;i++){cin>>ele;v.push_back(ele);}intp,s,e;cin>>p;cin>>s>>e;v.erase(v.begin()+p-1);v.erase(v.begin()+s-1,v.begin()+e-1);cout<<v.size()<<endl;for(inti:v){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-Erase
You are viewing a single comment's thread. Return to all comments →
all test case clear