/*
Do you need explanation for this?
Put the array values into a Hashmap and search for target-array[i] everytime
Space O(n) - Time O(n)
*/
public class Solution {
public int[] twoSum(int[] nums, int target) {
HashMap