Panda Guru LogoPanda
Guru

Salesforce OA

Round 1

Questions: Given an array of integers, find all pairs of integers (x,y) from the array that satisfy the below conditions:

Example:

arr = [2, 5, -3]

The possible pairs are (2, -3) and (5, -3).

Candidate's Approach

No approach provided.

Interviewer's Feedback

No feedback provided.