Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: High Performance Game of Life

by marioroy (Prior)
on Aug 12, 2017 at 10:25 UTC ( [id://1197302]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Return the list of dead cells surrounding a cell
    sub get_dead_cells {
    ...
         ( $k8 = "$x2:$y2" ) x !( 0 + exists $cells->{ $k8 } ) );
    }
    
  2. or download this
    use feature 'state';
    
    ...
         ( $k8 = "$x2:$y2" ) x !( 0 + exists $cells->{ $k8 } ) );
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-25 11:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found