You are viewing a single comment's thread. Return to all comments →
python
def divisibleSumPairs(n, k, ar): count = 0 for idx in range(len(ar)): for jdx in range(idx+1, len(ar)): if (ar[idx]+ar[jdx])%k==0: count+=1 return count
Seems like cookies are disabled on this browser, please enable them to open this website
Divisible Sum Pairs
You are viewing a single comment's thread. Return to all comments →
python