HJ3题解 | #明明的随机数#
明明的随机数
https://www.nowcoder.com/practice/3245215fffb84b7b81285493eae92ff0
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int num, temp; cin>>num; vector<int> ve; while(cin>>temp) { bool have = false; for(int i=0; i<ve.size(); i++) { if(ve[i] == temp) { have = true; break; } } if(have == true) { continue; } ve.push_back(temp); } sort(ve.begin(), ve.end()); for(int i=0; i<ve.size(); i++) { cout<<ve[i]<<endl; } }
HJ3,使用algorithm的sort。