Skip to content

Commit 95e78a8

Browse files
committed
Time: 13 ms (69.49%), Space: 43 MB (65.76%) - LeetHub
1 parent 9111b79 commit 95e78a8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Solution {
2+
public int minFlipsMonoIncr(String s) {
3+
int zeroes = 0;
4+
int ones = 0;
5+
for(char ch : s.toCharArray()){
6+
if(ch == '0'){
7+
zeroes++;
8+
}
9+
}
10+
int output = zeroes;
11+
for(char ch : s.toCharArray()){
12+
if(ch == '0'){
13+
zeroes--;
14+
}
15+
else if(ch == '1'){
16+
ones++;
17+
}
18+
output = Math.min(output, zeroes+ones);
19+
}
20+
return output;
21+
}
22+
}

0 commit comments

Comments
 (0)