My issue
For this question my code is right but all the test cases going to fail. please help me to resolve it.
My code
t = int(input())
for j in range(t):
n = int(input())
s = input()
count = 0
res = "aeiou"
if n<=3:
print("YES")
else:
for i in range(n):
if s[i] not in res:
count+=1
if count ==4:
print("N0")
break
else:
count = 0
if count<4:
print("YES")