
Find the odd numbers in N positive integers
T = int(input())
for t in range(T):
N = int(input())
a = list(map(int, input().split()))
count = 0
for i in range(N):
if (a[i] % 2 == 1):
count += 1
print(count)
Loop for T times
N numbers are given for each test case, and if the number is odd, the number must be counted and printed