


The first line of the input contains an integer 'T' denoting the number of test cases.
The first line of each test case contains a single integer 'N', as described in the problem statement.
The second line of each test case contains 'N' space-separated integers, representing the elements of the array.
For each test case print 'N' space-separated integers arranged in non-decreasing order.
The output of every test case will be printed in a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 10^5
-10^9 <= ARR[i] <= 10^9
Where ‘T’ denotes the number of test cases and ‘N’ denotes the size of ‘ARR’.
Time Limit: 1sec
Example: let the given array is [5 2 1 3 12 8].