Your question is Two-Sum Index Tuples. 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.
Valence workspace analytics needs to identify every pair of numeric entries that reaches a specified target. Given an integer array nums and an integer target, return all index pairs (i, j) such that i < j and nums[i] + nums[j] == target.
You must not reuse the same array element. Include every valid pair, including pairs formed from duplicate values. Return pairs in the order discovered while scanning from left to right: pairs with the smaller right index appear first, and pairs sharing the same right index are ordered by their left index.
nums, a list of integers, and target, an integer.(i, j), using zero-based indices.def all_target_pairs(nums, target):