Kalpana's Galaxy

0

0 votes
Easy
Problem

In a galaxy named Kalpana, there are N stars. Scientists are categorizing these stars on the basis of their characteristics. They have divided these N stars into 26 groups named from A to Z. Also, a given star is given some integer between range [1,26]. So, if a star belongs to group A, integer associated with it will be 1, 2 for B and so on upto 26 for Z.

There is one group with odd number of stars. Your task is to print that particular group.

Input Format:

First line contains T, number of test cases.

First line of each test case contains N, number of stars.

Second line of each test case contains N values denoting the integers associated with each star.

Output Format:

For each test case, output the required answer is separate lines.

Constraints:

1T10

1N105

1 intger associated with each star 26

Sample Input
1
15
2 2 3 4 4 2 8 3 9 3 2 9 3 8 8

Sample Output
H
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation
For first case, only group numbered 8 is having odd stars. Hence, output is H.
Editor Image

?