forked from DengWangBao/Leetcode-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainsDuplicateII.java
More file actions
33 lines (30 loc) · 898 Bytes
/
ContainsDuplicateII.java
File metadata and controls
33 lines (30 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import java.util.HashMap;
import java.util.HashSet;
/**
* https://leetcode.com/articles/contains-duplicate-ii/
*/
public class ContainsDuplicateII {
public boolean containsNearbyDuplicate(int[] nums, int k) {
HashMap<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
Integer idx = map.get(nums[i]);
if (idx != null && i - idx <= k) {
return true;
}
map.put(nums[i], i);
}
return false;
}
public boolean containsNearbyDuplicate2(int[] nums, int k) {
HashSet<Integer> set = new HashSet<>();
for (int i = 0; i < nums.length; i++) {
if (i >= k + 1) {
set.remove(nums[i - k - 1]);
}
if (!set.add(nums[i])) {
return true;
}
}
return false;
}
}