From 279f27649349b3c0b26de4d3b942912ed6bc92fb Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Wed, 2 Aug 2023 00:12:29 -0700 Subject: [PATCH] completes 30/909 test cases --- Top150Interview/1_Two_Sum.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Top150Interview/1_Two_Sum.py b/Top150Interview/1_Two_Sum.py index a398c61..5962fcd 100644 --- a/Top150Interview/1_Two_Sum.py +++ b/Top150Interview/1_Two_Sum.py @@ -1,7 +1,9 @@ -def twoSum(self, nums, target): +def twoSum(nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ - \ No newline at end of file + + +twoSum([2,7,11,15], 9) \ No newline at end of file