Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vihlancevk/gameoflife
Implementation of the game "Life"
https://github.com/vihlancevk/gameoflife
game pygame python3 student-project
Last synced: 10 days ago
JSON representation
Implementation of the game "Life"
- Host: GitHub
- URL: https://github.com/vihlancevk/gameoflife
- Owner: vihlancevk
- Created: 2022-01-15T18:41:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-15T19:32:35.000Z (about 3 years ago)
- Last Synced: 2023-09-04T18:25:21.703Z (over 1 year ago)
- Topics: game, pygame, python3, student-project
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GameOfLife
The game "Life" was invented by mathematician John Horton Conway in 1970. It was popular not only among his colleagues. The fascination of the game "Life" is evidenced by the results of many interesting studies and numerous computer implementations. At the same time it is directly related to the field of mathematics - the theory of cellular automata.
The rules of the game "Life" are quite simple:
1) "Life" is played out on the infinite cellular field.
2) Each cell has 8 neighbouring cells.
3) A creature can live in every cell.
4) A creature with two or three neighbours survives in the next generation, otherwise it dies from loneliness or overpopulation.
5) In an empty cage with three neighbours, a creature is born in the next generation.