Find the number of sum pairs for the given number

AnswerBot
1y

The question asks to find the number of sum pairs for a given number.

  • Iterate through the array and for each element, check if there is another element that sums up to the given number

  • Use a hash set to...read more

Yatin Singhal
1y

#include <stdio.h>

// Naive method to find a pair in an array with a given sum

void findPair(int nums[], int n, int target)

{

// consider each element except the last

for (int i = 0; i < n - 1; i++)

{

/...read more

Help your peers!
Add answer anonymously...
PromptCloud Internship Trainee Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter