217. 存在重复元素
Yuxuan Wu Lv13

217. 存在重复元素

给定一个整数数组,判断是否存在重复元素。

如果存在一值在数组中出现至少两次,函数返回 true 。如果数组中每个元素都不相同,则返回 false

示例 1:

1
2
输入: [1,2,3,1]
输出: true

示例 2:

1
2
输入: [1,2,3,4]
输出: false

示例 3:

1
2
输入: [1,1,1,3,3,4,3,2,4,2]
输出: true

方法1:

1
2
3
4
5
6
7
8
9
10
11
12
public boolean containsDuplicate(int[] nums) {
// 2,14,18,22,22
Arrays.sort(nums);
int left = 0;
int right =1;
for (int i = 0; i<nums.length-1;i++){
if(nums[left]==nums[right]) return true;
right = right+1;
left++;
}
return false;
}
  • Post title:217. 存在重复元素
  • Post author:Yuxuan Wu
  • Create time:2021-07-05 20:08:23
  • Post link:yuxuanwu17.github.io2021/07/05/2021-07-06-217.-存在重复元素/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.