Help for this page

Select Code to Download


  1. or download this
    (disk): (peg from) -> (peg to)
    
  2. or download this
    $ ./hanoi.pl 3 3
    1: A -> B
    ...
    1: C -> A
    2: C -> B
    1: A -> B
    
  3. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    
    Ben Tilly (tilly on perlmonks)