Advertisement
llsumitll
Nov 15th, 2023
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Input: nums = [2,5,7,13], target = 9 Output: [0,2] Explanation: Because nums[0] + nums[2] == 9, we return [0, 2].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement