forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_219.java
29 lines (26 loc) · 1.18 KB
/
_219.java
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
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.Map;
/**219. Contains Duplicate II
*
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the difference between i and j is at most k.*/
public class _219 {
//pretty straightforward, use a hashmap, key is the number itself, value is the last index that this value appeared in the array
//we can keep updating the value as we move forward, since if the current index minus the last index cannot be smaller than k, then
//the later indices won't even do either. So, we only need to keep one index in the value of the HashMap. Cheers!
public boolean containsNearbyDuplicate(int[] nums, int k) {
Map<Integer, Integer> map = new HashMap();
for (int i = 0; i < nums.length; i++) {
if (map.containsKey(nums[i])) {
if (i - map.get(nums[i]) <= k) {
return true;
} else {
map.put(nums[i], i);
}
} else {
map.put(nums[i], i);
}
}
return false;
}
}