in reply to Extract Duplicates by one liner
my @dups = do {my %h; grep $h{$_}++, @array}; [download]
That doesn't seem to work:
$ perl -le 'my @array = qw( foo bar bar baz); my @dups = do {my %h; gr +ep $h{$_}++, @array}; print join( ", ", @dup );' $ [download]
Update: Nevermind. That'll teach me to use strict.
Prints nothing.
"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.