Time: 2860 ms (34.24%), Space: 14.4 MB (22.20%) - LeetHub

This commit is contained in:
Deven
2022-07-11 23:32:33 -04:00
parent cf3942cf45
commit 023c1e422d
+11
View File
@@ -0,0 +1,11 @@
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
for i in range(len(nums)):
for j in range(i + 1, len(nums)):
if nums[i] + nums[j] == target:
return [i, j]