Skip to content

Instantly share code, notes, and snippets.

@v1b3m
Last active September 21, 2018 07:17
Show Gist options
  • Save v1b3m/2976527b296b2dab48ae43bf9310fe3e to your computer and use it in GitHub Desktop.
Save v1b3m/2976527b296b2dab48ae43bf9310fe3e to your computer and use it in GitHub Desktop.
/* function to simuate tower of hanoi */
var hanoi = function(disc,src,aux,dst) {
if (disc > 0) {
hanoi(disc - 1,src,dst,aux);
$('#lists').append("Move disc " + disc + " from " + src + " to " + dst + "<br />");
hanoi(disc - 1,aux,src,dst);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment