Another wibbily wobbly timey wimey...stuff related with Conway's game of life.
- Any live cell with less than 2 live neighbors dies (under population)
- Any live cell with 2 or 3 live neighbors lives (next generation)
- Any live cell with +3 live neighbors dies (over population)
- Any dead cell with 3 live neighbors becomes live cell (reproduction)
stage_0 = [[0,1,1],[0,0,1],[0,0,0]]
stage_1 = [[0,0,1],[0,0,0],[0,0,0]]
There is a simple interface to enter the matrix values and test all phases until there is no live cell.
python game_of_life.py
Here is a input example:
