Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: Deciding unique elements of an array

by rolfy (Acolyte)
on Sep 14, 2005 at 01:21 UTC ( [id://491738]=note: print w/replies, xml ) Need Help??


in reply to Re: Deciding unique elements of an array
in thread Deciding unique elements of an array

more simple - well.... yes and no...
#!/usr/bin/perl my @a = ('a', 'b', 'c', 'c' ,'f', 'a', 'd'); my @b = grep (!$_{$_}++, @a);

the 'my @b' line is the solution - it comes up with the correct info, but does involve doing a little work to get to the answer.

It's definitely more simple to write :) but as for processing times etc - I really don't know if it's going to be better or not.

It's a bit nasty to put this in your code without commenting it also, as I've got a few perl friends (none uber perl ppls, but 'know' perl), and none of them understood the intent :)

Log In?
Username:
Password:

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

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

    No recent polls found