-
-
Save Skarsnik/dc497c7faadaba33868e00706d7dd060 to your computer and use it in GitHub Desktop.
This file contains 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
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