We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
defdivisibleSumPairs(n,k,ar):# Write your code herenumber_of_pairs=0foriinrange(0,len(ar)):forjinrange(0,len(ar)):ifi<jandi!=jand(ar[i]+ar[j])%k==0:number_of_pairs+=1returnnumber_of_pairs
Cookie support is required to access HackerRank
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 →