Skip to content

Commit 7cfb734

Browse files
authored
fix: remove two sum invalid test cases (#186)
1 parent acd587a commit 7cfb734

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

leetcode/two_sum/test_solution.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ def setup_method(self):
2929
([89, 90, 91, 92, 93, 97, 98, 99], 185, [3, 4]),
3030
([-1000000000, 1000000000], 0, [0, 1]),
3131
([0, 1], 1, [0, 1]),
32-
([1, 2], 5, []),
33-
([3, 5, 7], 1, []),
34-
([10, 20, 30], 15, []),
3532
],
3633
)
3734
def test_two_sum(self, nums: list[int], target: int, expected: list[int]):

0 commit comments

Comments
 (0)