Help for this page

Select Code to Download


  1. or download this
    sub genFixedSubsets
    {
        my( $size, @set )= @_;
    ...
    while(  @subset= $gen->()  ) {
        print "@subset\n";
    }
    
  2. or download this
    $ subsets 3 5
    3 2 1
    4 2 1
    ...
    5 3 2
    5 4 2
    5 4 3