Help for this page

Select Code to Download


  1. or download this
    remove_x99(\@dead_list, \@get_list);
    
  2. or download this
    
    sub remove_x99 {
    ...
      my $get_list_ref  = shift; 
      my %lookup = map {$_ => 1} @$get_lisr_ref;
      # ...
    
  3. or download this
    sub remove_x99 {
      my $dead_ref = shift;
      my @dead-list = @$dead-ref;
      #...
    
  4. or download this
      my @dead_list = @$dead_ref;