01. Two Sum

两数之和

给定一个整数数组nums和一个目标值target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。

Java代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.*;

public class TwoSum{
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
int key = target - nums[i];

if (map.contains(key))
return new int[]{map.get(key), i};

map.put(nums[i], i);
}
throw new IllegalArgumentException("No two sum solution");
}
}

0%