Skip to content

Commit bfa1243

Browse files
committed
Time: 15 ms (97.94%), Space: 51.5 MB (50.50%) - LeetHub
1 parent 029ca64 commit bfa1243

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

0219-contains-duplicate-ii/0219-contains-duplicate-ii.java

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
class Solution {
22
public boolean containsNearbyDuplicate(int[] nums, int k) {
3+
if (nums.length == 0)
4+
return false;
5+
36
Set<Integer> set = new HashSet<>();
47
for (int i = 0; i < nums.length; i++) {
58
if (i > k) {

0 commit comments

Comments
 (0)