Help for this page

Select Code to Download


  1. or download this
    my %seen = ();
    my @uniq = ();
    ...
           push (@uniq, $item);  # and again
       }
    }
    
  2. or download this
    my %seen;
    $seen{$_} = 1 for (@proc_name1);