Find Pair Sum Equal to K
Given an integer array arr
and an integer 'Sum'
, find and return the total number of pairs in the array which, when added together, result in the 'Sum'
.
Note:
The array can contain duplicate elements. Pairs (arr[i], arr[j]) and (arr[j], arr[i]) are considered the same.
Input:
First line: two space-separated integers, N and Sum. Second line: N space-separated integers representing array elements.
Output:
Total number of pairs present in the array that sum to the given value.
Example:
Input:
N = 5, Sum = 5
arr = [1, 2, 3, 2, 1]
Output:
2
Explanation:
The pairs (1, 4) and (2, 3) sum to 5.
Constraints:
- 1 <= N <= 105
- -104 <= Sum <= 104
- -104 <= arr[i] <= 104
- Time Limit: 1 sec

AnswerBot
4mo
Find total number of pairs in array that sum to given value.
Use a hashmap to store frequency of each element in the array.
Iterate through the array and check if (Sum - current element) exists in the h...read more
Help your peers!
Add answer anonymously...
Amazon Software Developer interview questions & answers
A Software Developer was asked 1mo agoQ. Could you describe the process for designing a data structure that allows for al...read more
A Software Developer was asked 1mo agoQ. What is MySQL?
A Software Developer was asked 1mo agoQ. What is Java?
Popular interview questions of Software Developer
A Software Developer was asked 1mo agoQ1. Could you describe the process for designing a data structure that allows for al...read more
A Software Developer was asked 1mo agoQ2. What is MySQL?
A Software Developer was asked 1mo agoQ3. What is Java?
Top HR questions asked in Amazon Software Developer
A Software Developer was asked 1mo agoQ1. Tell me about a time you had to get to the root cause of a problem
A Software Developer was asked 5mo agoQ2. What are the short-term and long-term goals for the team or organization?
A Software Developer was asked 5mo agoQ3. Why do you want to work at Amazon?
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

