两数之和求目标值
题目:两数之和
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
解题思路
求两数之和,使用快慢指针的方式,当两个指针 取出的函数值相加为目标值时,满足条件
第一种解法:暴力枚举
此种解法最容易想出来,但消耗内存过大
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
L = []
n = len(nums)
for i in range(n-1):
for j in range(i+1, n):
if nums