2609. Find the Longest Balanced Substring of a Binary String
You are given a binary string
sconsisting only of zeroes and ones.A substring of
sis considered balanced if all zeroes are before ones and the number of zeroes is equal to the number of ones inside the substring. Notice that the empty substring is considered a balanced substring.Return the length of the longest balanced substring of
s.A substring is a contiguous sequence of characters within a string.
1 | class Solution { |