

The first line of input contains an integer ‘T’ denoting the number of test cases. The test cases follow.
The first line of each test case contains a number ‘n’ denoting the number of characters in the string.
The second line of each test case contains the string where the string characters can be both uppercase and lowercase.
For each test case, if Ninja managed to solve the problem, print “YES” else “NO”.
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 function.
1<= T <= 50
1<= n <= 10^4
Where ’T’ is the number of test cases, ‘n’ denotes the number of characters in the string.
Time Limit: 1 sec
The idea is to maintain a boolean array that will check for all the characters in the string.
The steps are as follows: