Can anyone tell me the best method for removing duplicate array values. eg:
@array = qw( a a a b b b c); becomes after some operation I cant seem to figure: @new_array_or_same = (a b c);
Can anyone tell me the best method for removing duplicate array values. eg:
@array = qw( a a a b b b c); becomes after some operation I cant seem to figure: @new_array_or_same = (a b c);