LeetCode 1 兩數之和(簡單)

嗷嗷嗷嗷_發表於2020-10-06

給定一個整數陣列 nums和一個目標值target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。

你可以假設每種輸入只會對應一個答案。但是,陣列中同一個元素不能使用兩遍。

示例:

給定 nums = [2, 7, 11, 15], target = 9
因為 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

思路 + 程式碼

雜湊表 時間複雜度O(n) 空間複雜度O(n)

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[] {i, map.get(target - nums[i])};
            map.put(nums[i], i);
        }
        return new int[0];
    }
}

本題可以在一次迴圈就解決,不需要兩次遍歷哦!

相關文章