commit 4f15387a707c0a0b4efed5c4c9114953010b4bc2 Author: Johan Sandoval Date: Sat Jul 4 21:11:52 2026 -0500 initial commit diff --git a/1-Two-Sum/Solution.py b/1-Two-Sum/Solution.py new file mode 100644 index 0000000..33e87dc --- /dev/null +++ b/1-Two-Sum/Solution.py @@ -0,0 +1,3 @@ +class Solution: + def twoSum(self, nums: List[int], target: int) -> List[int]: +