Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: finding the distinct elements in an array

by rafl (Friar)
on May 29, 2006 at 13:10 UTC ( [id://552306]=note: print w/replies, xml ) Need Help??


in reply to finding the distinct elements in an array

For example using that code:

my %seen; my @distinct_elems = grep { !$seen{$_}++ } @array;

or maybe

my %seen = map { $_ => 1 } @array; my @distinct_elems = keys %seen;

The first example even gives you the number of occurence of each element.

Cheers, Flo

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://552306]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-23 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found