题解--两数之和

leetcode每日一题:两数之和
题目详述:
题解--两数之和_第1张图片

解:
利用HashMap来进行。

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

你可能感兴趣的:(java,leetcode,题解)