Help for this page

Select Code to Download


  1. or download this
    my %seen = ();
    my $tmp
    ...
      print $_ if $seen{$_} == 2;
    }
    
  2. or download this
    
    my %seen = ();
    ...
    
    print $_ foreach (sort{$seen{$a}<=>$seen{$b}}keys %seen);