From a90378381b06ec7155a0499df686844a548e6954 Mon Sep 17 00:00:00 2001 From: Rytxxx Date: Fri, 6 Jun 2025 23:48:36 +0900 Subject: [PATCH] Two Sum --- Array&Hashing/Two-sum.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Array&Hashing/Two-sum.py 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