Given `nums` and `target`, return indices of two distinct numbers that add up to `target`. Exactly one solution exists. Variant **#14**.
Example 1
Input: nums = [14,43,36,7,18,29,0,11,22,33,4,15,26,37,8,19,30,0], target = 43
Output: [0,5]
nums[0] + nums[5] = 43
Constraints
Acceptance: 76% · Topics: array, hash-table