1151. Minimum Swaps to Group All 1's Together
Description
**Input:** data = [1,0,1,0,1]
**Output:** 1
**Explanation:**
There are 3 ways to group all 1's together:
[1,1,1,0,0] using 1 swap.
[0,1,1,1,0] using 2 swaps.
[0,0,1,1,1] using 1 swap.
The minimum is 1.**Input:** data = [0,0,0,1,0]
**Output:** 0
**Explanation:**
Since there is only one 1 in the array, no swaps needed.ac
Previous1150. Check If a Number Is Majority Element in a Sorted ArrayNext1152. Analyze User Website Visit Pattern
Last updated