Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            make_sets1( $weight -1, "$temp_result$item, ");
        }
    }
    
  2. or download this
    $ time perl  multisets.pl
    count = 1
    ...
    real    0m0.141s
    user    0m0.046s
    sys     0m0.031s
    
  3. or download this
    $ time perl  multisets.pl > /dev/null
    
    real    0m0.057s
    user    0m0.015s
    sys     0m0.015s
    
  4. or download this
    count = 3
    0, 0, 0,
    ...
    3, 3, 0,
    3, 3, 2,
    3, 3, 3,
    
  5. or download this
    count=3
    3,0,0
    ...
    0,0,0
    0,2,2
    2,2,2