Help for this page

Select Code to Download


  1. or download this
    my @weighteddiv = (('1234') x 7, ('9876') x 42, ('1123') x 13);
    my %selected;
    ...
    
    my @selected = keys %selected;
    print "Selected: @selected\n";
    
  2. or download this
      if (++$selected{$pluck} == 1) {
        push @selected, $pluck;
      }
    
  3. or download this
    my @weighteddiv = (('1234') x 7, ('9876') x 42, ('1123') x 13);
    my @selected;
    ...
    }
    
    print "Selected: @selected\n";