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.
用一个set存放数组元素,如果元素不能add,则返回true;
public boolean containsDuplicate(int[] nums) {
if(nums==null||nums.length<=0)
return false;
HashSet<Integer> set=new HashSet<Integer>();
for(int i:nums){
if(!set.add(i))
return true;
}
return false;
}

本文介绍了一种利用HashSet来判断数组中是否存在重复元素的方法。通过将数组元素逐个添加到HashSet中,若发现元素无法添加,则说明存在重复元素,返回true;反之则返回false,表明所有元素各不相同。
224

被折叠的 条评论
为什么被折叠?



