首页 > 其他 > 详细

Leetcode: Contains Duplicate

时间:2015-12-17 08:12:31      阅读:232      评论:0      收藏:0      [点我收藏+]
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.

Use HashSet:

 1 public class Solution {
 2     public boolean containsDuplicate(int[] nums) {
 3         if (nums==null || nums.length==0) return false;
 4         HashSet<Integer> set = new HashSet<Integer>();
 5         for (int elem : nums) {
 6             if (set.contains(elem)) return true;
 7             else {
 8                 set.add(elem);
 9             }
10         }
11         return false;
12     }
13 }

 

Leetcode: Contains Duplicate

原文:http://www.cnblogs.com/EdwardLiu/p/5052891.html

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