My issue
i use the all steps but, still getting wrong answer? what was the issue in it?
My code
# cook your dish here
n = int(input())
arr = list(map(int,input().split()))
even = 0
odd = 0
for i in arr:
if i%2 == 0:
even += 1
else:
odd += 1
if even>odd:
print("READY FOR BATTLE")
elif even==odd and even<odd:
print("NOT READY")
Problem Link: AMR15A Problem - CodeChef