Very simple REACT + Spring Boot implementation of Conway's Game of Life
Conway's game of life was devised by britich mathematician John Horton Conway in 1970. It is considered a zero-player due to the fact that the only required inputs is the initial board state.
The behavior of the cells are dictated from a couple very simple rules.
- Any live cell with two or three live neighbors survives.
- Any dead cell with three live neighbours becomes a live cell.
- Any other live cells die in the next generation.
You can read more about conways game of life here.