Find Pair With Given Sum
easySave
ArrayHash TableTwo Pointers
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order.
Example 1
Input
[ [ 2, 7, 11, 15 ], 9 ]
Output
[0, 1]
Explanation. The numbers at index 0 and 1 add up to the target 9 (2 + 7 = 9).
Example 2
Input
[ [ 3, 2, 4 ], 6 ]
Output
[1, 2]
Explanation. The numbers at index 1 and 2 add up to the target 6 (2 + 4 = 6).
Example 3
Input
[ [ 3, 3 ], 6 ]
Output
[0, 1]
Explanation. The numbers at index 0 and 1 add up to the target 6 (3 + 3 = 6).
Follow-up: Can you come up with an algorithm that is less than O(n^2) time complexity?
Constraints:
- `2 <= nums.length <= 10^3`\n- `-10^9 <= nums[i] <= 10^9`\n- `-10^9 <= target <= 10^9`
- Views
- 2