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.
functiondivisibleSumPairs(n,k,ar){// Write your code hereletcount=0;while(ar.length>1){leti=ar.shift();for(letj=0;j<ar.length;j++){letsum=i+ar[j];if(sum%k===0)count++;}}returncount;}
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 →
This is my solution, with JavaScript: