Help for this page

Select Code to Download


  1. or download this
    my $n1 = $data->{n1};
    my $n2 = $data->{n2};
    for my $c (1..$n1) {
        $data->{"exclude-$c-$_"} = 'yes' for 1..$n2;
    }
    
  2. or download this
    for my $c (1..$data->{n1}) {
     $data->{"exclude-$c-$_"} = 'yes' for 1..$data->{n2};
    }