Habad's/conway Game of Life

Conway’s Game of Life starts with a 2d grid, and each cell in the grid being either alive or dead. The grid will then evolve after each iteration based on the following rules:

Rules of the Game:

Any living cell with less than 2 live neighbors dies

Any living cell with 2 or 3 live neighbors continues to be alive

Any dead cell with three live neighbors becomes a live cell

Any live cell with more than 3 live neighbors dies

Following these rules, each cell counts the number of live cells adjacent to it and determines its upcoming status.

Refresh the page to Start the Game!

Conway's Game of Life