You are given a binary string s consisting only of characters '0' and '1'.
A string is balanced if it contains an equal number of '0's and '1's.
You can perform at most one swap between any two characters in s. Then, you select a balanced substring from s.
Return an integer representing the maximum length of the balanced substring you can select.
Example 1:
Input: s = "100001"
Output: 4
Explanation:
"100001". The string becomes "101000"."101000", which is balanced because it has two '0's and two '1's.Example 2:
Input: s = "111"
Output: 0
Explanation:
'0's and zero '1's.Constraints:
1 <= s.length <= 105s consists only of the characters '0' and '1'.Loading editor...
"100001"