Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

(MeowChow) Re2: (Efficiently) comparing arrays

by MeowChow (Vicar)
on Apr 04, 2002 at 10:15 UTC ( [id://156613]=note: print w/replies, xml ) Need Help??


in reply to Re: (Efficiently) comparing arrays
in thread comparing arrays

You can get about a 30% performance improvement over the original naive code with the following:
  
my ($first, $second) = @_; return 0 if @$first != @$second; my $i = 0; $second->[$i++] ne $_ && return 0 for @$first; return 1;
   MeowChow                                   
               s aamecha.s a..a\u$&owag.print

Log In?
Username:
Password:

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

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

    No recent polls found