Help for this page

Select Code to Download


  1. or download this
    foreach my $len(@uniques) {
        push @distrbtn, $len;
    ...
        }
        push @distrbtn, $count;
    }
    
  2. or download this
    my %dstrbtn_hash = @distrbtn;
    
  3. or download this
    my %dstrbtn_hash;
    foreach my $len(@uniques) {
    ...
        }
        $dstrbtn_hash{ $len } =  $count;
    }