forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1100.java
26 lines (24 loc) · 765 Bytes
/
_1100.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
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Set;
public class _1100 {
public static class Solution1 {
public int numKLenSubstrNoRepeats(String S, int K) {
int count = 0;
Set<Character> set = new HashSet<>();
for (int i = 0; i <= S.length() - K; i++) {
String string = S.substring(i, i + K);
boolean invalid = false;
for (char c : string.toCharArray()) {
if (!set.add(c)) {
invalid = true;
break;
}
}
count += invalid ? 0 : 1;
set.clear();
}
return count;
}
}
}