1. 两数之和

2019-08-22  本文已影响0人  东_11f3

java

···

class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
int complement = target - nums[i];
if (map.containsKey(complement)) {
return new int[] { map.get(complement), i };
}
map.put(nums[i], i);
}
throw new IllegalArgumentException("No two sum solution");

}

}

···

python


GO



上一篇下一篇

猜你喜欢

热点阅读