From a2b8e1dd8f6ce7d809030e7739ae7bce01a14381 Mon Sep 17 00:00:00 2001 From: Deven <63876261+devenperez@users.noreply.github.com> Date: Tue, 12 Jul 2022 13:01:05 -0400 Subject: [PATCH] Time: 2601 ms (35.95%), Space: 14.2 MB (68.06%) - LeetHub --- 1-two-sum/1-two-sum.py | 1 + 1 file changed, 1 insertion(+) diff --git a/1-two-sum/1-two-sum.py b/1-two-sum/1-two-sum.py index 3e543b6..e5123eb 100644 --- a/1-two-sum/1-two-sum.py +++ b/1-two-sum/1-two-sum.py @@ -5,6 +5,7 @@ class Solution(object): :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: