Your question is Two Sum Using Hash Table. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given an integer array nums and an integer target, return the indices of the two distinct elements whose values add up to target. Return the answer as a list of two indices. You may assume exactly one valid pair exists, and you may not use the same element twice.
def two_sum(nums, target):