Help for this page

Select Code to Download


  1. or download this
    %seen = (); foreach $item (@srcs) {     push(@uniq, $item) unless $see
    +n{$item}++; }
    print "@uniq\n";
    
  2. or download this
    my %count; 
    foreach $1 ( @srcs ) { 
    ...
    } 
    
    my @srcs = sort keys %count;