74. 数组中唯一只出现一次的数字
Posted make-big-money
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了74. 数组中唯一只出现一次的数字相关的知识,希望对你有一定的参考价值。
没按题目要求做啊
class Solution { public: int findNumberAppearingOnce(vector<int>& nums) { int n=nums.size()-1; unordered_map<int,int > hash; for(int i=0;i<=n;i++) { hash[nums[i]]++; } for(int i=0;i<=n;i++) { if(hash[nums[i]] == 1) return nums[i]; } } };
以上是关于74. 数组中唯一只出现一次的数字的主要内容,如果未能解决你的问题,请参考以下文章
《剑指Offer——数组中只出现一次的两个数字,数组中唯一只出现一次的数字》代码