Leetcode-algorithm 217. 存在重复元素
程序员文章站
2023-12-27 18:54:03
...
文章目录
122. 买卖股票的最佳时机 II
题目描述
给定一个整数数组,判断是否存在重复元素。
如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。
示例 1:
示例 1:
输入: [1,2,3,1]
输出: true
示例 2:
示例 2:
输入: [1,2,3,4]
输出: false
示例 3:
输入: [1,1,1,3,3,4,3,2,4,2]
输出: true
题目链接链接:https://leetcode-cn.com/problems/contains-duplicate/
class Solution {
public boolean containsDuplicate(int[] nums) {
HashSet set = new HashSet();
for(int i=0; i<nums.length; i++){
set.add(nums[i]);
}
boolean flag = false;
if(set.size() != nums.length){
flag = true;
}
return flag;
}
}
答题解释
1、 可以通过 set 集合的特性不能添加相同的值,把数组中的元素添加到 set 集合中,再比较长度,看长度有没有变化。
性能分析
上面的代码时间复杂度为 O(n)