in reply to Remove Duplicates from Array

hi, Try out this one
push(@newunique,grep {!$ss{$_}++} @unique);
In the above code of @newunique you will have only unique values of array.