Play
👾 Conway's Game of Life (Teams)
Red: 0 Blue: 0Rules and Description
Conway's Game of Life – zero player game was invented by Cambridge mathematician John Conway. It consists of collection of cells, which can be in two states: Live (Populated) or Dead (Unpopulated). Based on few mathematicals rules each cell can change their state.
Cell State | Neighbors count | Next State |
---|---|---|
Live | greater than 3 | Dead |
Live | less than 2 | Dead |
Dead | equal 3 | Live |
I'm using a Ghost platform for my blog. So it's a bit tricky to write custom code inside blog editor :D But looks like works fine for now.