From 44b7b8e7b48f1464f86b45e329577e47cf735d74 Mon Sep 17 00:00:00 2001 From: jhakesh32 <33264055+jhakesh32@users.noreply.github.com> Date: Tue, 31 Oct 2017 23:41:58 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dea0cb1..27de5f4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # Data-Structures-and-Algorithms -includes practices questions as well as algorithms +includes practices questions as well as algorithms. +cp From f916eefd0a8bd2faf71b4aabd364e3d2d2202b2d Mon Sep 17 00:00:00 2001 From: DarthCoder3200 Date: Thu, 31 Oct 2019 22:11:41 +0530 Subject: [PATCH 2/2] Update tower_of_hanoi.c --- tower_of_hanoi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower_of_hanoi.c b/tower_of_hanoi.c index 570037f..fcfc16b 100644 --- a/tower_of_hanoi.c +++ b/tower_of_hanoi.c @@ -4,7 +4,7 @@ // 2. Only one disc can be moved at a time #include -// recursive function +// recursive function for finding tower of hanoi void towerOfHanoi(int n, char from_rod, char to_rod, char aux_rod) { if (n == 1)