Skip to content

Commit 5a2a65f

Browse files
refactor 76
1 parent 9fb0f01 commit 5a2a65f

File tree

2 files changed

+60
-33
lines changed

2 files changed

+60
-33
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,61 @@
11
package com.fishercoder.solutions;
22

33
/**
4+
* 76. Minimum Window Substring
5+
*
46
* Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).
57
68
For example,
79
S = "ADOBECODEBANC"
810
T = "ABC"
11+
912
Minimum window is "BANC".
1013
1114
Note:
12-
If there is no such window in S that covers all characters in T, return the empty string "".
1315
16+
If there is no such window in S that covers all characters in T, return the empty string "".
1417
If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.
1518
*/
19+
1620
public class _76 {
1721

22+
public static class Solution1 {
1823
public String minWindow(String s, String t) {
19-
int[] counts = new int[256];
20-
for (char c : t.toCharArray()) {
21-
counts[c]++;
24+
int[] counts = new int[256];
25+
for (char c : t.toCharArray()) {
26+
counts[c]++;
27+
}
28+
29+
int start = 0;
30+
int end = 0;
31+
int minStart = 0;
32+
int minLen = Integer.MAX_VALUE;
33+
int counter = t.length();
34+
while (end < s.length()) {
35+
if (counts[s.charAt(end)] > 0) {
36+
counter--;
2237
}
2338

24-
int start = 0;
25-
int end = 0;
26-
int minStart = 0;
27-
int minLen = Integer.MAX_VALUE;
28-
int counter = t.length();
29-
while (end < s.length()) {
30-
if (counts[s.charAt(end)] > 0) {
31-
counter--;
32-
}
33-
34-
counts[s.charAt(end)]--;
35-
end++;
36-
37-
while (counter == 0) {
38-
if (end - start < minLen) {
39-
minStart = start;
40-
minLen = end - start;
41-
}
42-
counts[s.charAt(start)]++;
43-
if (counts[s.charAt(start)] > 0) {
44-
counter++;
45-
}
46-
start++;
47-
}
39+
counts[s.charAt(end)]--;
40+
end++;
41+
42+
while (counter == 0) {
43+
if (end - start < minLen) {
44+
minStart = start;
45+
minLen = end - start;
46+
}
47+
counts[s.charAt(start)]++;
48+
if (counts[s.charAt(start)] > 0) {
49+
counter++;
50+
}
51+
start++;
4852
}
53+
}
4954

50-
if (minLen == Integer.MAX_VALUE) {
51-
return "";
52-
}
53-
return s.substring(minStart, minStart + minLen);
55+
if (minLen == Integer.MAX_VALUE) {
56+
return "";
57+
}
58+
return s.substring(minStart, minStart + minLen);
5459
}
55-
60+
}
5661
}
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._76;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class _76Test {
10+
private static _76.Solution1 solution1;
11+
private static int[] nums;
12+
13+
@BeforeClass
14+
public static void setup() {
15+
solution1 = new _76.Solution1();
16+
}
17+
18+
@Test
19+
public void test1() {
20+
assertEquals("BANC", solution1.minWindow("ADOBECODEBANC", "ABC"));
21+
}
22+
}

0 commit comments

Comments
 (0)