首页 > 其他 > 详细

LeetCode——Single Number II

时间:2015-06-28 00:01:42      阅读:301      评论:0      收藏:0      [点我收藏+]

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;
    }
}

 

LeetCode——Single Number II

原文:http://www.cnblogs.com/wxisme/p/4604904.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!