To find all pairs in an array that sum up to a specific target value, use a hash set to track the numbers that can form pairs.
- Initialize an empty set to store numbers.
- Iterate through the array and for each element, check if the complement (target - current element) is in the set.
- If the complement exists, add the pair to the result array.
- If not, add the current element to the set.
- Return the array of pairs.
function findPairs(arr, target) {
const pairs = [];
const seen = new Set();
for (let num of arr) {
const complement = target - num;
if (seen.has(complement)) {
pairs.push([complement, num]);
}
seen.add(num);
}
return pairs;
}
// Example usage
console.log(findPairs([1, 2, 3, 4, 5], 5)); // Output: [[1, 4], [2, 3]]
console.log(findPairs([10, 15, 3, 7], 17)); // Output: [[10, 7]]
This method has a time complexity of O(n), where n is the length of the array.
Tags: intermediate, JavaScript, Arrays, Algorithm