![]() |
|
We don't bite newbies here... much | |
PerlMonks |
Re: Perl sorting unique valuesby Utilitarian (Vicar) |
on Jun 22, 2011 at 08:43 UTC ( #910870=note: print w/replies, xml ) | Need Help?? |
If ever you find yourself thinking "I need to get the unique values of $THING" you should consider using a hash, iterating through the values for $F[2] and incrementing $hash_of_f2{$F[2]} would give you a set of unique values available as keys %hash_of_f2 which you could then sort
print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."
In Section
Seekers of Perl Wisdom
|
|