| 1 | # Recursive Python function to solve the tower of hanoi |
| 2 | def TowerOfHanoi(n, source, destination, auxiliary): |
| 3 | if n == 1: |
| 4 | print("Move disk 1 from source ", source, " to destination ", destination) |
nothing calls this directly
no test coverage detected