diff --git a/array/two_sum.py b/array/two_sum.py index 29afd79..14d92b9 100644 --- a/array/two_sum.py +++ b/array/two_sum.py @@ -27,3 +27,5 @@ def two_sum(nums:"List[int]", target:"int")->"List[int]": target = 6 res = two_sum(arr, target) print(res) + +#i need to stop doing this