There was an error while loading. Please reload this page.
1 parent acd587a commit 7cfb734Copy full SHA for 7cfb734
1 file changed
leetcode/two_sum/test_solution.py
@@ -29,9 +29,6 @@ def setup_method(self):
29
([89, 90, 91, 92, 93, 97, 98, 99], 185, [3, 4]),
30
([-1000000000, 1000000000], 0, [0, 1]),
31
([0, 1], 1, [0, 1]),
32
- ([1, 2], 5, []),
33
- ([3, 5, 7], 1, []),
34
- ([10, 20, 30], 15, []),
35
],
36
)
37
def test_two_sum(self, nums: list[int], target: int, expected: list[int]):
0 commit comments