Given an array nums and target target, return indices of two numbers that add up to target in O(N) linear time using a dictionary.
nums
target
[*] Output indices: [0, 1] [✓] Hash map lookup verified (Time: 0.016s, Memory: 14.1 MB)