刷爆LeetCode题之简单篇(连载中。。。)

两数之和
描述:

给定一个整数数组 nums 和一个整数目标值 target, 请你在该数组中找出 和为目标值 target的那 两个 整数,并返回它们的数组下标。你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/two-sum 著作权归领扣网络所有。

题解:
func twoSum(nums []int, target int) []int { nums_l := len(nums) for i, num := range nums { for j := i+1; j < nums_l; j++ { if num + nums[j] == target{ return []int{i, j} } } } return nil }

分析:
时间复杂度:O(N^2),其中 N 是数组中的元素数量。 最坏情况下数组中任意两个数都要被匹配一次。空间复杂度:O(1)

    推荐阅读