Problem of the day
A binary array is an array consisting of only 0s and 1s.
You are given a binary array "arr" of size ‘N’. Your task is to sort the given array and return this array after sorting.
Input Format :
The first line of input contains an integer ‘T’ denoting the number of test cases.
The next ‘2*T’ lines represent the ‘T’ test cases.
The first line of each test case contains an integer ‘N' denoting the size of the array.
The second line of each test case contains ‘N’ space-separated integers consisting of 0s and 1s as the array elements.
Output Format :
For each test case, print ‘N’ space-separated integers representing the elements of the sorted binary array in a separate line.
Print the output of each test case in a separate line.
Note :
You do not need to print anything, it has already been taken care of. Just implement the given function.
Follow Up :
1. Can you solve this problem in a linear time and constant space?
2. Can you solve this problem in a single traversal only?
Constraints :
1 <= T <= 50
1 <= N <= 10^4
0 <= arr[i] <= 1
Where ‘T’ is the number of test cases and ‘N’ is the size of the array.
Time Limit: 1 sec
2
3
0 1 0
4
0 0 0 1
0 0 1
0 0 0 1
Test case 1:
The sorted array is 0 0 1
Test case 2:
The array is already sorted.
2
1
0
2
1 0
0
0 1
Test case 1:
The array is already sorted
Test case 2:
The sorted array is 0 1.