Skip to content

Instantly share code, notes, and snippets.

@zbigniewTomczak
Created February 19, 2013 13:55
Show Gist options
  • Save zbigniewTomczak/4986100 to your computer and use it in GitHub Desktop.
Save zbigniewTomczak/4986100 to your computer and use it in GitHub Desktop.
var hanoi = function hanoi(disc, src, aux, dst) {
if (disc > 0) {
hanoi(disc - 1, src, dst, aux);
console.log('Move disc ' + disc +
' from ' + src + ' to ' + dst);
hanoi(disc - 1, aux, src, dst);
}
};
hanoi(3, 'Src', 'Aux', 'Dst');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment