Help for this page

Select Code to Download


  1. or download this
    my @collect = ( 0 ) x NUM_TOSSES;
    
  2. or download this
    my @collect = ( 0 ) x ( NUM_TOSSES + 1 );
    
  3. or download this
    my @collect = map 0, 0 .. NUM_TOSSES;