From f03e44f38f311f98946e193a7adce475fe571a76 Mon Sep 17 00:00:00 2001 From: devenperez <63876261+devenperez@users.noreply.github.com> Date: Tue, 12 Jul 2022 00:16:39 -0400 Subject: [PATCH] Deleted problem 1 again --- 1-two-sum/1-two-sum.py | 11 ----------- 1-two-sum/NOTES.md | 1 - 2 files changed, 12 deletions(-) delete mode 100644 1-two-sum/1-two-sum.py delete mode 100644 1-two-sum/NOTES.md diff --git a/1-two-sum/1-two-sum.py b/1-two-sum/1-two-sum.py deleted file mode 100644 index 3e543b6..0000000 --- a/1-two-sum/1-two-sum.py +++ /dev/null @@ -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] \ No newline at end of file diff --git a/1-two-sum/NOTES.md b/1-two-sum/NOTES.md deleted file mode 100644 index 38c1374..0000000 --- a/1-two-sum/NOTES.md +++ /dev/null @@ -1 +0,0 @@ -​ \ No newline at end of file