3228. Maximum Number of Operations to Move Ones to the End
You are given a binary string
s
.You can perform the following operation on the string any number of times:
- Choose any index
i
from the string wherei + 1 < s.length
such thats[i] == '1'
ands[i + 1] == '0'
.- Move the character
s[i]
to the right until it reaches the end of the string or another'1'
. For example, fors = "010010"
, if we choosei = 1
, the resulting string will bes = "0**001**10"
.Return the maximum number of operations that you can perform.
1 |
|