I'd like to remove duplicate values from an array to leave it with only unique values. For instance, if an array contains (1,2,3,1,4,2,5) as values, I'd like to clean out the extra 1 and 2 to leave the values as (1,2,3,4,5). Does perl have an array command to do that, or must the process be purely manual?
Thanks, Darren Peterson