Help for this page

Select Code to Download


  1. or download this
    my $min_i = 0;
    foreach my $i (1..$#array) {
      $min_i = $i if $array[$i]->[2] < $array[$min_i]->[2];
    }