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 be321dd5cea85fec502f43f1b3af72f8f9aa29e2 Mon Sep 17 00:00:00 2001 From: Oreoluwa Ajao <39207128+oresam123@users.noreply.github.com> Date: Fri, 11 Oct 2019 13:32:45 +0100 Subject: [PATCH 2/2] Update count_islands.py Introduced myself --- union-find/count_islands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/union-find/count_islands.py b/union-find/count_islands.py index 15cd676..0b2b01d 100644 --- a/union-find/count_islands.py +++ b/union-find/count_islands.py @@ -76,3 +76,4 @@ def unite(self, p, q): self.id[i] = j self.sz[j] += self.sz[i] self.count -= 1 +#hello guys