Skip to content

Commit 788a95f

Browse files
committed
Create: 1888-minimum-number-of-flips-to-make-the-binary-string-alternating.js
1 parent 91ddab2 commit 788a95f

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/**
2+
* https://leetcode.com/problems/minimum-number-of-flips-to-make-the-binary-string-alternating/
3+
* Time O(n), Space O(1)
4+
* @param {string} s
5+
* @return {number}
6+
*/
7+
var minFlips = (s) => {
8+
if (!s || s.length < 1) return 0;
9+
10+
const initialLen = s.length;
11+
if (initialLen % 2 === 1) s += s;
12+
13+
let evenCmp = 0;
14+
let oddCmp = 0;
15+
let result = Infinity;
16+
let end = 0;
17+
let start = 0;
18+
19+
while (end < s.length) {
20+
if (end % 2 !== Number(s[end])) evenCmp++;
21+
if ((end % 2 ^ 1) !== Number(s[end])) oddCmp++;
22+
23+
if (end >= initialLen) {
24+
if (start % 2 !== Number(s[start])) evenCmp--;
25+
if ((start % 2 ^ 1) !== Number(s[start])) oddCmp--;
26+
start++;
27+
}
28+
29+
if (end >= initialLen - 1) {
30+
result = Math.min(evenCmp, oddCmp, result);
31+
}
32+
end++;
33+
}
34+
35+
return result;
36+
};

0 commit comments

Comments
 (0)