Problem of the day
Unique element is always present in the array/list according to the given condition.
The first line contains an Integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow.
First line of each test case or query contains an integer 'N' representing the size of the array/list.
Second line contains 'N' single space separated integers representing the elements in the array/list.
For each test case, print the unique element present in the array.
Output for every test case will be printed in a separate line.
1 <= t <= 10^2
0 <= N <= 10^3
Time Limit: 1 sec
1
7
2 3 1 6 3 6 2
1
2
5
2 4 7 2 7
9
1 3 1 3 6 6 7 10 7
4
10