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<set>#include<algorithm>usingnamespacestd;intmain(){/* Enter your code here. Read input from STDIN. Print output to STDOUT */intQ;cin>>Q;set<int>s;for(inti=0;i<Q;i++){intqueryType,queryValue;cin>>queryType>>queryValue;if(queryType==1){s.insert(queryValue);}elseif(queryType==2){s.erase(queryValue);}elseif(queryType==3){set<int>::iteratorit=s.find(queryValue);if(it!=s.end()){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}}}return0;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Sets-STL
You are viewing a single comment's thread. Return to all comments →