Description:

  Given an array of integers, every element appears three times except for one. Find that single one.

只有一个出现一次的数字,其他的都出现了3次,找出出现一次的那个数字。

public class Solution {
    public int singleNumber(int[] nums) {
        Map<Integer, Integer> map = new HashMap<>();
        int len = nums.length;
        for(int i=0; i<len; i++) {
            if(!map.containsKey(nums[i])) {
                map.put(nums[i], 1);
            }
            else {
                map.put(nums[i], map.get(nums[i])+1);    
            }
        }
        
        for(int i : map.keySet()) {
            if(map.get(i) != 3) {
                return i;
            }
        }
        return 0;
    }
}

 

相关文章:

  • 2022-12-23
  • 2021-07-19
  • 2021-11-01
  • 2021-06-30
  • 2022-02-22
  • 2022-02-10
  • 2021-07-20
  • 2021-09-13
猜你喜欢
  • 2022-12-23
  • 2021-06-12
  • 2021-12-16
  • 2021-08-19
  • 2021-09-28
  • 2021-09-20
  • 2022-12-23
相关资源
相似解决方案