Round 1
Questions: Given an array of integers, find all pairs of integers (x,y) from the array that satisfy the below conditions:
- min(|x - y|, |x + y|) <= min(|x|, |y|)
- max(|x - y|, |x + y|) >= max(|x|, |y|)
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.