-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeetCode219.java
More file actions
43 lines (39 loc) · 1.11 KB
/
LeetCode219.java
File metadata and controls
43 lines (39 loc) · 1.11 KB
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
34
35
36
37
38
39
40
41
42
43
/*
Given an integer array nums and an integer k, return true if there are
two distinct indices i and j in the array such that nums[i] == nums[j]
and abs(i - j) <= k.
Example 1:
Input: nums = [1,2,3,1], k = 3
Output: true
Example 2:
Input: nums = [1,0,1,1], k = 1
Output: true
Example 3:
Input: nums = [1,2,3,1,2,3], k = 2
Output: false
*/
import java.util.Map;
import java.util.HashMap;
public class LeetCode219{
static public boolean containsNearbyDuplicate(int[] nums, int k) {
Map<Integer,Integer> contain = new HashMap<>();
for(int i=0;i<nums.length;i++){
if(!contain.containsKey(nums[i])){
contain.put(nums[i],i);
}
else{
int duplicateIndex = contain.get(nums[i]);
if(Math.abs(duplicateIndex - i) <= k){
return true;
}
else{
contain.put(nums[i],i);
}
}
}
return false;
}
public static void main(String[] args) {
System.out.println(containsNearbyDuplicate(new int[]{1,2,3,1},3 ));
}
}