diff --git a/README.md b/README.md index 6db330d..a8d764f 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# Books \ No newline at end of file +# Books + +this Repo contains solutions to different sorting algorithms written in python 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