Help for this page

Select Code to Download


  1. or download this
    for my $n (0 .. 267) {
        print "$n\n" if grep {$n == $_} 40, 47, 76;
    }
    
  2. or download this
    my %wanted = map {$_ => 1} 40, 47, 76;
    
    for my $n (0 .. 267) {
        print "$n\n" if exists $wanted{$n};
    }