Interview Coder drill
Interview Coder drill
Interview Coder drill
10:00
Given an array of integers nums and an integer target, return indices of the two numbers that add up to target. Print the two indices separated by a space.
Example 1
Input: nums = [2,7,11,15], target = 9
Output: 0 1
nums[0] + nums[1] = 2 + 7 = 9
Example 2
Input: nums = [3,2,4], target = 6
Output: 1 2
nums[1] + nums[2] = 2 + 4 = 6
Constraints
Capture your plan, then rate how clearly you recalled it before submitting.