โ Back to Arrays
Question 399
Two Sum
Two Sum
Given the array{2, 7, 11, 15}and the target9, find the two elements that add up to the target and print their indices in increasing order, separated by a space. Exactly one such pair exists: 0 1
Expected Output:
0 1
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.