🌗 217. 存在重复元素
2022年10月10日
- algorithm
🌗 217. 存在重复元素
难度: 🌗
问题描述
解法
class Solution {
public boolean containsDuplicate(int[] nums) {
// 思路:
// HashSet 去重
HashSet<Integer> set = new HashSet<>();
for(int i : nums) {
if(set.contains(i)) {
return true;
} else {
set.add(i);
}
}
return false;
}
}