您的位置:首页 > 大数据 > 人工智能

【leetcode】217. Contains Duplicate

2016-06-20 12:33 471 查看
题目要求:

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.

即传入一个数组,判断数组中有没有重复的元素

思路:利用HashSet

public class Solution {
public boolean containsDuplicate(int[] nums) {
HashSet<Integer> set = new HashSet<Integer>();
for(int i=0;i<nums.length;i++)
{
if(!set.add(nums[i]))
{
return true;
}
}
return false;

}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: