Program to calculate the next generation of Conway's game of life, given any starting position. You start with a two dimensional grid of cells, where each cell is either alive or dead. The grid is finite, and no life can exist off the edges. When calculating the next generation of the grid, follow these four rules:
- Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
- Any live cell with more than three live neighbours dies, as if by overcrowding.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any dead cell with exactly three live neighbours becomes a live cell.
Dependencies can be installed by
npm install
Code linting
grunt
Game can be run by passing the input through a file
nodejs src/index.js < /tests/fixtures/stdin
stdin must contain the following input format
4 8
........
....*...
...**...
........
-
Where
4
is the height of the cell field and8
is the width of the cell field -
.
or a DOT represents a dead cell -
*
or an asterisk represents a live cell