Interview Guides
Given an array of integers 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 in any order. You may assume exactly one valid pair exists.
2 <= len(nums) <= 10^5-10^9 <= nums[i] <= 10^9-10^9 <= target <= 10^9