Help for this page

Select Code to Download


  1. or download this
    sub find_holes {
      my @list = @{ shift() };
    ...
      my @vacancies = grep {$_} @notfound;
      return \@vacancies;
    }