Two Sum
Return two numbers that add to target.
Input: [2,7,11,15], target=9
Output: [2,7]
🐍 Python Editor
Loading...
Console Output
Click ▶ Run Python
Return two numbers that add to target.
Input: [2,7,11,15], target=9
Output: [2,7]
Click ▶ Run Python