Your question is Two Sum Pair Finding. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Affinity solutions uses array-based matching in several product workflows. Given an integer array and a target integer, return every pair of distinct indices whose values sum to the target.
Implement find_pairs(nums, target). The input nums is a list of integers and target is an integer. Return a list of two-element lists [i, j], where i < j and nums[i] + nums[j] == target. Include all valid index pairs, including pairs formed by duplicate values. The same array element may not be used twice.
Return pairs in increasing order of their second index, and for pairs sharing the same second index, in increasing order of their first index. Return an empty list if no pair exists.
def find_pairs(nums, target):