您的位置:首页 > 其它

Datawhale-LeetCode集训打卡-两数之和

2019-01-28 15:52 344 查看

Datawhale-LeetCode集训打卡-两数之和

参加Datawhale-LeetCode集训打卡-第一天-两数之和

Brute Force

class Solution:
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
sum = []
for i in range(0, len(nums)):
for j in range(i+1, len(nums)):
if nums[i] + nums[j] == target:
sum.append(i)
sum.append(j)
return sum
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: