Find All Pairs Adding Up to Target
Given an array of integers ARR
of length N
and an integer Target
, your task is to return all pairs of elements such that they add up to the Target
.
Input:
The first line contains an integer 'T' denoting the number of test cases.
Then, the test case follows.
The first line of each test case contains two space-separated integers 'N' and 'Target'.
The second line contains 'N' space-separated integers denoting the elements of the array.
Output:
For each test case, print pairs of integers denoting the elements which add up to the target.
Each pair must be printed in a new line.
If no pair is found, print (-1, -1).
Example:
For example, consider the following input/output:
Input:
2
5 9
2 7 4 5 6
4 10
1 2 8 4
Output:
2 7
4 5
-1 -1
Constraints:
1 <= T <= 100
1 <= N <= 5000
-10^9 <= TARGET <= 10^9
-10^9 <= ARR[i] <= 10^9
Note:
You do not need to print anything; the function is already set up to handle output.

AnswerBot
4mo
The task is to find all pairs of elements in an array that add up to a given target.
Iterate through the array and for each element, check if the target minus the element exists in a hash set.
If it exi...read more
soumya ranjan nayak
3y
function printPairs(arr, n, sum)
{
// let count = 0; // Initialize result
// Consider all possible pairs and check
// their sums
for (let i = 1; i < n; i++)
for (let j = i + 1; j < n; j++)
if ...read more
Help your peers!
Add answer anonymously...
Kellton Software Engineer interview questions & answers
A Software Engineer was asked Q. Distinct Subsequences Problem Statement You are given a string 'S' of length 'N'...read more
A Software Engineer was asked Q. Minimum Number of Swaps to Sort an Array Find the minimum number of swaps requir...read more
A Software Engineer was asked Q. Kth Largest Element Problem Given an array containing N distinct positive intege...read more
Popular interview questions of Software Engineer
A Software Engineer was asked Q1. Distinct Subsequences Problem Statement You are given a string 'S' of length 'N'...read more
A Software Engineer was asked Q2. Minimum Number of Swaps to Sort an Array Find the minimum number of swaps requir...read more
A Software Engineer was asked Q3. Kth Largest Element Problem Given an array containing N distinct positive intege...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

