summaryrefslogtreecommitdiff
path: root/progs/a529.py
blob: b4acdbcf9e24da627f92cc9aa6e71b03a3aa5f11 (plain)
1
2
3
4
5
6
7
def find_even_Pair(A,N): 
    evenPair = 0
    for i in range(0,N): 
        for j in range(i+1,N): 
            if ((A[i] ^ A[j]) % 2 == 0): 
                evenPair+=1
    return evenPair;