LeetCode——Single Number II
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; } }
作者:Pickle
声明:对于转载分享我是没有意见的,出于对博客园社区和作者的尊重一定要保留原文地址哈。
致读者:坚持写博客不容易,写高质量博客更难,我也在不断的学习和进步,希望和所有同路人一道用技术来改变生活。觉得有点用就点个赞哈。







