From 4dc1fcce19beb384e0cf9ec1a7975322768001d0 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Mon, 31 Jul 2023 21:46:07 -0700 Subject: [PATCH] Start of two sum --- Top150Interview/1_Two_Sum.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Top150Interview/1_Two_Sum.py diff --git a/Top150Interview/1_Two_Sum.py b/Top150Interview/1_Two_Sum.py new file mode 100644 index 0000000..a398c61 --- /dev/null +++ b/Top150Interview/1_Two_Sum.py @@ -0,0 +1,7 @@ +def twoSum(self, nums, target): + """ + :type nums: List[int] + :type target: int + :rtype: List[int] + """ + \ No newline at end of file