給定一個整數數組 nums 和一個目標值 target,請你在該數組中找出和為目標值的那 兩個 整數,并返回他們的數組下標。
你可以假設每種輸入只會對應一個答案。但是,數組中同一個元素不能使用兩遍。
示例:
給定 nums = [2, 7, 11, 15], target = 9
因為 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
代碼
fclass Solution {
func twoSum(_ nums: [Int], _ target: Int) -> [Int] {
var memory = [Int: Int]()
for index in 0..<nums.count {
let value = nums[index]
let number = target - value
if let dicE = memory[number] {
return[dicE, index]
} else {
memory[value] = index
}
}
return [Int]()
}
}