Created
November 6, 2018 16:13
-
-
Save tianmingzuo/993d1866cba09a4414eb805e5ef73361 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function moveDisk(n, source, buffer, destination){ | |
| if(n>=1){ | |
| moveDisk(n-1, source, destination, buffer); | |
| console.log("Move one disk from " + source + " to " + destination); | |
| moveDisk(n-1, buffer, source, destination); | |
| }else{ | |
| return; | |
| } | |
| } | |
| moveDisk(5, "A", "B", "C"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment