Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    
        return @arrangements;
    }
    
  2. or download this
    1 1 3
    1 2 2
    ...
    2 1 2
    2 2 1
    3 1 1
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
            arrange($usedHoles, $remainingCount - $thisCount, $totalHoles,
    + "$prefix $thisCount");
        }
    }