Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Fastest way to lookup a point in a set

by eyepopslikeamosquito (Archbishop)
on Aug 05, 2017 at 23:30 UTC ( [id://1196828]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    exists $cells->{$p->[0],$p->[1]} or die;
    
  2. or download this
    exists $cells->{ join ':', @{$p} } or die;
    
  3. or download this
    Str:   7 wallclock secs ( 6.58 usr + 0.00 sys =.58 CPU) @ 30404.38/s (
    +n=200000)
    Multi: 8 wallclock secs ( 7.98 usr + 0.00 sys =.98 CPU) @ 25050.10/s (
    +n=200000)
    
  4. or download this
    exists $cells->{ join ':', $p->[0], $p->[1] } or die;
    

Log In?
Username:
Password:

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

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

    No recent polls found