How to Segregate 0s and 1s in an Array.
Given an array of 0s and 1s in a random order. We have to write a code to segregate 0s on the left side and 1s on the right side of the array.
Basically, we have to sort an array of 0s and 1s.
For example –
Input array = [0, 1, 0, 1, 0, 0, 1]
Output array = [0, 0, 0, 0, 1, 1, 1]
In an input array 0s and 1s are in an unsorted order. The output is the sorted order of 0s and 1s.