vote up 1 vote down star

I'm pushing elements into an array during a while statement. Each element is a teacher's name. There ends up being duplicate teacher names in the array when the loop finishes. Sometimes they are not right next to each other in the array, sometimes they are.

How can I print only the unique values in that array after its finished getting values pushed into it? Without having to parse the entire array each time I want to print an element.

Heres the code after everything has been pushed into the array:

$faculty_len = @faculty;
$i=0;
while ($i != $faculty_len)
{
    	printf $fh '"'.$faculty[$i].'"';
    	$i++;
}
flag

4 Answers

vote up 12 vote down check
use List::MoreUtils qw/ uniq /;
my @unique = uniq @faculty;
foreach ( @unique ) {
    print $_, "\n";
}
link|flag
This works if installing MoreUtils is possible. It's not always. – Robert P Jan 13 '09 at 16:59
List::MoreUtils is a single module with no dependencies. You should be able to have a local copy of that module if you are on shared hosting – Manni Jan 13 '09 at 17:03
vote up 7 vote down

I suggest pushing it into a hash. like this:

my %faculty_hash = ();
foreach my $facs (@faculty) {
  $faculty_hash{$facs} = 1;
}
my @faculty_unique = keys(%faculty_hash);
link|flag
This can sometimes change the order of the elements. Perhaps you could mention the possibility of putting "push @faculty_unique, $facs unless exists $faculty_hash{$facs}" inside the for-loop. – A. Rex Jan 13 '09 at 16:27
I figured for teacher's name, order wasn't critical. If it is, it's probably alphabetical. Still not too hard to solve. – cmartin Jan 13 '09 at 20:13
You can always "sort keys %faculty_hash" to get a sorted (ASCII-betically) list. – Max Lybbert Jan 13 '09 at 20:22
instead of using a foreach, i'd use map: my %faculty_hash = map { $_ => 1 } @faculty; – Robert P Jan 13 '09 at 21:22
vote up 6 vote down

Keeping uniques is the same thing as eliminating duplicates, see this equivalent question: http://stackoverflow.com/questions/7651/how-do-i-remove-duplicate-items-from-an-array-in-perl

link|flag
vote up 4 vote down

Your best bet would be to use a (basically) built-in tool, like uniq (as described by Manni).

If you don't have the ability to use uniq and want to preserve order, you can use grep to simulate that.

my %seen;
my @unique = grep { ! $seen{$_}++ } @faculty;
# printing, etc.

This first gives you a hash where each key is each entry. Then, you iterate over each element, counting how many of them there are, and adding the first one. (Updated with comments by brian d foy)

link|flag
I think you really just mean this: my %Seen; @unique = grep { ! $Seen{$_}++ } @faculty; – brian d foy Jan 13 '09 at 18:46
Ah, of course! Updating. – Robert P Jan 13 '09 at 21:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.