Removed "Two Sum" for testing purposes

This commit is contained in:
devenperez
2022-07-11 23:35:32 -04:00
parent 023c1e422d
commit 59813bed83
4 changed files with 0 additions and 64 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]