No description
  • C 93.1%
  • Makefile 6.9%
Find a file
2022-01-26 23:40:01 +01:00
.obj Basic build 2019-01-10 17:15:33 +01:00
.gitignore Basic build 2019-01-10 17:15:33 +01:00
config.h Introducing (f) for flush and (g) for glider gun 2019-10-29 16:20:28 +01:00
game_of_gl_life.c clang-format 2022-01-26 23:40:01 +01:00
game_of_life.gif Example 2019-01-10 19:23:52 +01:00
Makefile sync 2019-01-10 18:52:49 +01:00
README.md Example 2019-01-10 19:23:52 +01:00

Conway's Game of Life

  1. Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overpopulation.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Example

Example

License

Educational purpose only.