Skip to content

Instantly share code, notes, and snippets.

@Skarsnik
Created September 6, 2017 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Skarsnik/dc497c7faadaba33868e00706d7dd060 to your computer and use it in GitHub Desktop.
Save Skarsnik/dc497c7faadaba33868e00706d7dd060 to your computer and use it in GitHub Desktop.
sub hanoi {
my ($n, $d, $a, $i) = @_;
return if $n == 0;
hanoi($n - 1, $d, $i, $a);
hanoi($n - 1, $i, $a, $d);
}
hanoi(20, 1, 2, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment