Tower of hanoi(theory)

The helper tower which we are using also follows the rule that large disc cannot be above the small disc Or this rule is just for destination tower? Cause if it follow this rule then we might need many helper tower right?

@deepanshu_123 Helper tower also follows the same rule bro.

We are making two calls, first is:-
moving n - 1 disks from source to helper using destination tower.

Then again moving n - 1 disks from helper(source in this case) to destination using source as helper tower.

I will recommend you to dry run it.

If your doubt is solved, resolve it and rate.