-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTanuBob.java
33 lines (33 loc) · 931 Bytes
/
TanuBob.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//codechef problem
// import java.util.Arrays;
import java.util.Scanner;
class TanuBob{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while(t --> 0){
int n = sc.nextInt();
int count_Y = 0;
int count_I = 0;
String s = sc.next();
for(int i = 0 ;i< n; i++){
if(s.charAt(i) == 'Y'){
count_Y++;
}
else if(s.charAt(i) == 'I'){
count_I++;
}
}
if(count_I > 0){
System.out.println("Indian");
}
else if(count_Y > 0){
System.out.println("Not Indian");
}
else if(count_I == 0 && count_Y == 0 ){
System.out.println("Not Sure");
}
}
sc.close();
}
}