Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/minimum-swaps-to-group-all-1s-together
Given a binary array data
, return the minimum number of swaps required to group all 1
’s present in the array together in any place in the array.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
1 <= data.length <= 105
data[i]
is 0
or 1
.