- Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_1297.java
40 lines (37 loc) · 1.38 KB
/
_1297.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
30
31
32
33
34
35
36
37
38
39
40
packagecom.fishercoder.solutions.secondthousand;
importjava.util.HashMap;
importjava.util.HashSet;
importjava.util.Map;
importjava.util.Set;
publicclass_1297 {
publicstaticclassSolution1 {
publicintmaxFreq(Strings, intmaxLetters, intminSize, intmaxSize) {
intmaxFreq = 0;
for (intsize = minSize; size <= maxSize; size++) {
maxFreq = Math.max(maxFreq, getMaxFreqWithThisSize(s, maxLetters, size));
}
returnmaxFreq;
}
privateintgetMaxFreqWithThisSize(Stringstr, intmaxLetters, intsize) {
Map<String, Integer> map = newHashMap<>();
for (inti = 0; i <= str.length() - size; i++) {
Stringsubstring = str.substring(i, i + size);
Set<Character> set = newHashSet<>();
for (intj = 0; j < substring.length(); j++) {
set.add(substring.charAt(j));
if (set.size() > maxLetters) {
break;
}
}
if (set.size() <= maxLetters) {
map.put(substring, map.getOrDefault(substring, 0) + 1);
}
}
intmax = 0;
for (Stringkey : map.keySet()) {
max = Math.max(max, map.get(key));
}
returnmax;
}
}
}