給定一個(gè)整數(shù)數(shù)組 nums 和一個(gè)目標(biāo)值 target,請你在該數(shù)組中找出和為目標(biāo)值的那 兩個(gè) 整數(shù),并返回他們的數(shù)組下標(biāo)。
你可以假設(shè)每種輸入只會(huì)對應(yīng)一個(gè)答案髓涯。但是,數(shù)組中同一個(gè)元素不能使用兩遍哈扮。
示例:
給定 nums = [2, 7, 11, 15], target = 9
因?yàn)?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]()
}
}