Time: 3706 ms (26.43%), Space: 14.3 MB (44.44%) - LeetHub

This commit is contained in:
Deven
2022-07-12 12:57:43 -04:00
parent 2ea7a951d3
commit 2733df984a
+2 -3
View File
@@ -5,8 +5,7 @@ class Solution(object):
:type target: int :type target: int
:rtype: List[int] :rtype: List[int]
""" """
length = len(nums) for i in range(len(nums)):
for i in range(length): for j in range(i + 1, len(nums)):
for j in range(i + 1, length):
if nums[i] + nums[j] == target: if nums[i] + nums[j] == target:
return [i, j] return [i, j]