less code

This commit is contained in:
shellhub 2020-06-30 16:27:19 +08:00
parent 8914128e13
commit 74c091b1aa
1 changed files with 1 additions and 5 deletions

View File

@ -5,11 +5,7 @@
// Function for Tower of Hanoi algorithm
void hanoi(int noOfDisks, char where, char to, char extra)
{
if (noOfDisks == 0)
{
return;
}
else
if (noOfDisks != 0)
{
hanoi(noOfDisks - 1, where, extra, to);
printf("Move disk : %d from %c to %c\n", noOfDisks, where, to);