码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode#217Contains Duplicate

时间:2015-05-26 06:52:18      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:interview   function   question   appears   element   

Contains Duplicate

 Total Accepted: 1202 Total Submissions: 3067My Submissions

Question Solution 


Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.


Show Tags

Have you met this question in a real interview? 

Yes

 

No

Discuss

public class Solution {

    public boolean containsDuplicate(int[] nums) {

        Map<Integer,Integer> x=new HashMap<Integer, Integer>();

        for(int i=0;i<nums.length;i++)

        {

            if(x.get(nums[i])==null)

            {

                x.put(nums[i],1);

            }

            else

                return true;

        }

        return false;

    }

}


Leetcode#217Contains Duplicate

标签:interview   function   question   appears   element   

原文地址:http://7061299.blog.51cto.com/7051299/1655092

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!