>Hi, 

>I have instances where I want to delete duplicate elements out of an array.
>Is there an easy way to do this?

Well, if the order of the elements in the array does not matter, 
then you may try putting he array elements in a hash

++$uniq{$_} for (@array);

then convert it back to array;
 
@array = ();
@array = keys %unique;

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to