mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 23:07:08 +00:00
Time: 2601 ms (35.95%), Space: 14.2 MB (68.06%) - LeetHub
This commit is contained in:
@@ -5,6 +5,7 @@ class Solution(object):
|
|||||||
:type target: int
|
:type target: int
|
||||||
:rtype: List[int]
|
:rtype: List[int]
|
||||||
"""
|
"""
|
||||||
|
|
||||||
for i in range(len(nums)):
|
for i in range(len(nums)):
|
||||||
for j in range(i + 1, len(nums)):
|
for j in range(i + 1, len(nums)):
|
||||||
if nums[i] + nums[j] == target:
|
if nums[i] + nums[j] == target:
|
||||||
|
|||||||
Reference in New Issue
Block a user