in reply to The Mother Tongue
prints:my @arr = ("what", "the", "the", {"heck" => "I"}, {"heck" => "I"}, "don't", "get", "this"); my %uniq; @uniq{@arr} = (1) x @arr; @arr = keys %uniq; print join "\n", @arr;
this don't the HASH(0x1002f4e0) get HASH(0x1002116c) whatperldoc -q duplicate offers a few ways to do this depending on what you mean by "removing duplicates", but upon brief inspection it doesn't look like any of those would catch this problem either.
Hmmm...an interesting golf perhaps? :)
(Here's what it looks like in Python, if that helps any)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(MeowChow) Re2: The Mother Tongue
by MeowChow (Vicar) on Sep 06, 2001 at 20:50 UTC | |
by premchai21 (Curate) on Sep 07, 2001 at 00:14 UTC |