diff --git a/Array&Hashing/Two-sum.py b/Array&Hashing/Two-sum.py new file mode 100644 index 0000000..523fe85 --- /dev/null +++ b/Array&Hashing/Two-sum.py @@ -0,0 +1,8 @@ +from typing import List + +""" +Time Complexity: O(nlogn) +Space Complexity: O(1) +""" + +class Solution: \ No newline at end of file