mrzResearchArena / Conway-Life-Games

Conway's Game of Life Hands-on Implementation

Home Page:http://rafsanjani.pythonanywhere.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Conway's Game of Life

Rules:

1. Any live cell with fewer than two live neighbours dies (referred to as underpopulation or exposure[1]).
2. Any live cell with more than three live neighbours dies (referred to as overpopulation or overcrowding).
3. Any live cell with two or three live neighbours lives, unchanged, to the next generation.
4. Any dead cell with exactly three live neighbours will come to life.

About

Conway's Game of Life Hands-on Implementation

http://rafsanjani.pythonanywhere.com/


Languages

Language:Python 100.0%