小米oj 找出单独出现的数字
Posted dogenya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小米oj 找出单独出现的数字相关的知识,希望对你有一定的参考价值。
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 int n,x; 6 map<int,int>mp; 7 int main() 8 { 9 while(~scanf("%d",&x)){ 10 mp[x]++; 11 } 12 for(auto i:mp){ 13 if(i.second==1)printf("%d\n",i.first); 14 } 15 return 0; 16 }
以上是关于小米oj 找出单独出现的数字的主要内容,如果未能解决你的问题,请参考以下文章