Contains Duplicate
Total Accepted: 8348 Total Submissions: 23068Given 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.
[思路]
Do u really want me to write this?
[CODE]
public class Solution {
public boolean containsDuplicate(int[] nums) {
Set<Integer> unique = new HashSet<Integer>();
for(int x : nums) {
if(unique.contains(x) ) return true;
else unique.add(x);
}
return false;
}
}
本文介绍了一种使用HashSet数据结构来检查整数数组中是否存在重复元素的方法。通过遍历数组并将每个元素添加到HashSet中,如果某元素已存在于HashSet中,则表明数组包含重复项。
396

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



