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——数组中只出现一次的两个数字,数组中唯一只出现一次的数字》代码

数组中只出现一次的数字(数组中唯一只出现一次的数字)

《剑指offer》第五十六题II:数组中唯一只出现一次的数字

数组中唯一只出现一次的数字

算法题1 数组中唯一出现1次的数|唯一出现2次的数

数组中只出现一次的数字