forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_76.java
44 lines (38 loc) · 1.2 KB
/
_76.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
41
42
43
44
package com.fishercoder.solutions;
public class _76 {
public static class Solution1 {
public String minWindow(String s, String t) {
int[] counts = new int[256];
for (char c : t.toCharArray()) {
counts[c]++;
}
int start = 0;
int end = 0;
int minStart = 0;
int minLen = Integer.MAX_VALUE;
int counter = t.length();
while (end < s.length()) {
if (counts[s.charAt(end)] > 0) {
counter--;
}
counts[s.charAt(end)]--;
end++;
while (counter == 0) {
if (end - start < minLen) {
minStart = start;
minLen = end - start;
}
counts[s.charAt(start)]++;
if (counts[s.charAt(start)] > 0) {
counter++;
}
start++;
}
}
if (minLen == Integer.MAX_VALUE) {
return "";
}
return s.substring(minStart, minStart + minLen);
}
}
}