给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
链接:https://leetcode-cn.com/problems/two-sum
class Solution { public int[] twoSum(int[] nums, int target) { int[] res = new int[2]; int len = nums.length; Map<Integer,Integer> map = new HashMap<Integer, Integer>(); for(int i=0;i<len;i++) { int num = target - nums[i]; if(map.containsKey(num)) { res[0] = i; res[1] = map.get(num); break; } map.put(nums[i],i); // 7,0 } return res; } }