Help for this page

Select Code to Download


  1. or download this
    foreach my $x (0..$#{$arr1})
    {
      if($arr1->[$x] eq $1){$found++}
    }
    
  2. or download this
    foreach my $x (@$arr1)
    {
      if ($x eq $1) {$found++}
    }