Deleted problem 1 again

This commit is contained in:
devenperez
2022-07-12 00:16:39 -04:00
parent 15b958339f
commit f03e44f38f
2 changed files with 0 additions and 12 deletions
-11
View File
@@ -1,11 +0,0 @@
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]
-1
View File
@@ -1 +0,0 @@