

Input: ‘N’ = ‘4’ , 'V' = [ 2 , 1 , 4 , 3 ]
Output: "1 2 3 4"
As [ 1 , 2 , 3 , 4 ] is the sorted order.
The first line will contain the integer 'T', denoting the number of test cases.
For each test case, the first line contains a single integer ‘N’ the size of the input array.
Second-line contains ‘N’ space-separated integers which are the elements of the input array.
For each test case, print the element of the array input array in increasing order.
You don't need to print anything. It has already been taken care of. Just implement the given function.
1 <= 'T' <= 10
1 <= ‘N’ <= 10^4
1 <= ARR[i] <= 10^9
Time Limit: 1 sec
In, Radix Sort we do digit by digit sorting. We start from the least significant digit to the most significant digit. Radix sort uses counting sort as a subroutine to sort.
Let's see how the counting sort works.
This we will do for all positions in a number(from least significant to most significant).
6. Return ‘arr’.