Utopi
a

两数之和

Dictionary is a thing that you must learn

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

Example

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1]

我的( 800 ms )

func twoSum(_ nums: [Int], _ target: Int) -> [Int] { var sim = [0,0] for i in 0..<nums.count{ for j in i+1..<nums.count{ if (nums[i]+nums[j]==target) { sim[0]=i sim[1]=j } } } return sim }

双层循环在节省空间上有优势,但是现在硬盘已经这么便宜了,要节省空间干什么!!!还是时间最宝贵啊!!!

20 ms

class Solution { func twoSum(_ nums: [Int], _ target: Int) -> [Int] { let count = nums.count var dic = [Int : Int]() for i in 0..<count { dic[nums[i]] = i } for i in 0..<count { let found = target - nums[i] if let j = dic[found], i != j { return [i, j] } } return [] } }

字典这么快的吗??