From 6d46b939e27af7c084d305f9403285ab993423b2 Mon Sep 17 00:00:00 2001 From: Ipaye Alameen Date: Mon, 3 Jul 2017 11:19:58 +0100 Subject: [PATCH 1/2] edited readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 From 8ea04df2e7edb0c62edd0958bf744aae2decd5c4 Mon Sep 17 00:00:00 2001 From: Oreoluwa Ajao <39207128+oresam123@users.noreply.github.com> Date: Fri, 11 Oct 2019 13:38:07 +0100 Subject: [PATCH 2/2] Update two_sum.py Introduced and came again --- array/two_sum.py | 2 ++ 1 file changed, 2 insertions(+) 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