Help for this page

Select Code to Download


  1. or download this
    $ perl -le'print grep { $seen{$_} == 1 } map { $seen{$_}++; $_ } qw( a
    + b a c );'
    bc
    
  2. or download this
    grep { ++$seen{$_} == 1 }
    
    grep { !$seen{$_}++ }