2938. Separate Black and White Balls
There are
n
balls on a table, each ball has a color black or white.You are given a 0-indexed binary string
s
of lengthn
, where1
and0
represent black and white balls, respectively.In each step, you can choose two adjacent balls and swap them.
Return the minimum number of steps to group all the black balls to the right and all the white balls to the left.
1 |
|