Help for this page

Select Code to Download


  1. or download this
    my @array = map { $hash{$_} ? "$_.found" : "$_.lost" } 1 .. $max_found
    +;
    
  2. or download this
    $array[$number] = "$number.found";
    
  3. or download this
    @array = map { $array[$_] ? $array[$_] : "$_.lost" } 1 .. $#array;