博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode记录-两数之和
阅读量:5959 次
发布时间:2019-06-19

本文共 624 字,大约阅读时间需要 2 分钟。

给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。

你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。

示例:

给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1] 解答:
class Solution {  public static int[] twoSum(int[] nums, int target) {         Map
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"); } }

结果:

转载于:https://www.cnblogs.com/ztybug/p/9835928.html

你可能感兴趣的文章