


If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
The first line of input contains a single integer 'T', representing the number of test cases.
The first line of input contains an integer 'N' representing the length of the array.
The next line contains 'N' single space-separated integers representing elements of the array 'ARR'.
For each test case, return the list of elements that are not in the array 'ARR'.
Print the output of each test case in a separate line.
You are not required to print the expected output, it has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 10^5
0 <= 'ARR[i]' <= 150000
Where 'ARR[i]' denotes the array element.
Time Limit: 1 sec
The steps are as follows:
The steps are as follows:
The steps are as follows: