Skip to content

Commit 1a89764

Browse files
authored
Create 1963-minimum-number-of-swaps-to-make-the-string-balanced.js
Solved minimum-number-of-swaps-to-make-the-string-balanced in JS.
1 parent 456f323 commit 1a89764

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// problem link https://leetcode.com/problems/minimum-number-of-swaps-to-make-the-string-balanced
2+
// time complexity O(n)
3+
// space complexity O(1)
4+
5+
var minSwaps = function(s) {
6+
7+
let extraClosing = 0;
8+
let maxClosing = 0;
9+
for(let i = 0; i < s.length; i++) {
10+
s[i] === ']' ? extraClosing++ : extraClosing--;
11+
maxClosing = Math.max(maxClosing, extraClosing);
12+
}
13+
14+
return Math.ceil(maxClosing/2);
15+
};

0 commit comments

Comments
 (0)