Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 1.4 KB

README.md

File metadata and controls

11 lines (7 loc) · 1.4 KB

Cellular Automata

This is the Collection of ALL types of Artificial lives made using algos and maths.

Conway's Game of Life:

Conway’s Game of Life is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. It is a cellular automaton devised by British mathematician John Horton Conway in 1970. The game is played on a grid of cells, where each cell can be either alive (1) or dead (0). The game’s evolution is determined by three simple rules:

Rule 1: Any live cell with two or three live neighbours survives.
Rule 2: Any dead cell with three live neighbours becomes a live cell.
Rule 3: All other live cells die in the next generation.