Answers for "how to find sum of two integer is equal to sum of another two integers in array in javascript"

0

sum of two array in javascript

function sumArrays(...arrays) {
  const n = arrays.reduce((max, xs) => Math.max(max, xs.length), 0);
  const result = Array.from({ length: n });
  return result.map((_, i) => arrays.map(xs => xs[i] || 0).reduce((sum, x) => sum + x, 0));
}

console.log(...sumArrays([0, 1, 2], [1, 2, 3, 4], [1, 2])); // 2 5 5 4
Posted by: Guest on May-03-2020
0

JS two numbers in array whose sum equals a given number

let twoSum = (array, sum) => {
    let hashMap = {},
      results = []

        for (let i = 0; i < array.length; i++){
            if (hashMap[array[i]]){
                results.push([hashMap[array[i]], array[i]])
            }else{
                hashMap[sum - array[i]] = array[i];
            }
          }
          return results;
    }
console.log(twoSum([10,20,10,40,50,60,70,30],50));
Posted by: Guest on December-20-2021

Code answers related to "how to find sum of two integer is equal to sum of another two integers in array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language