leetcode python duplicate怎么提交

发布网友 发布时间:2022-04-24 15:34

我来回答

1个回答

热心网友 时间:2022-05-05 08:04

public class Solution {
//
public boolean containsNearbyDuplicate(int[] nums, int k) {
if(nums==null || nums.length<2) return false;
//key=int, val=index
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for(int i=0; i<nums.length; i++) {
if(map.containsKey(nums[i])) {
int j = map.get(nums[i]);
if(i-j<=k) return true;
} else {
map.put(nums[i], i);
}
}
return false;
}
}
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com