in reply to Re: Re: Removing Duplicates in an array?in thread Removing Duplicates in an array?
@a=qw( one two three for five six seven eight nine ten eleven); @hash{@a}=(0..$#a); @sorted=sort { $hash{$a}<=>$hash{$b} } keys %hash; [download]
mr.nick ...