首页 > 学院 > 开发设计 > 正文

219. Contains Duplicate II

2019-11-11 05:19:25
字体:
来源:转载
供稿:网友

java

import java.util.HashSet;import java.util.Set;public class Solution { public boolean containsNearbyDuplicate(int[] nums, int k) { Set<Integer> myset = new HashSet<Integer>(); int len = nums.length; for (int i = 0; i < len && i <= k; ++i) if (!myset.add(nums[i])) return true; for (int i = k + 1; i < len; ++i) { myset.remove(nums[i - k - 1]); if (!myset.add(nums[i])) return true; } return false; }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表