https://github.com/timerke/game_of_life
The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway. It is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input
https://github.com/timerke/game_of_life
c gameoflife javascript pyqt5 qt5
Last synced: 6 months ago
JSON representation
The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway. It is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input
- Host: GitHub
- URL: https://github.com/timerke/game_of_life
- Owner: timerke
- License: mit
- Created: 2022-09-12T12:40:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T02:29:17.000Z (almost 2 years ago)
- Last Synced: 2025-02-08T11:43:06.909Z (8 months ago)
- Topics: c, gameoflife, javascript, pyqt5, qt5
- Language: C
- Homepage:
- Size: 1.55 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# game_of_life
Реализация игры "Жизнь" на языках [C](C/README.md), C++, [Python](Python/README.md) и JavaScript. Об игре "Жизнь" можно почитать на [Википедии](https://ru.wikipedia.org/wiki/%D0%98%D0%B3%D1%80%D0%B0_%C2%AB%D0%96%D0%B8%D0%B7%D0%BD%D1%8C%C2%BB).## Правила игры
Поле - прямоугольник, состоящий из клеток. Подразумевается, что поле "замкнуто само на себя", к примеру у нижней правой клетки соседом справа является нижняя левая клетка, а соседом снизу - верхняя правая.
В папке **initial_states** есть разные начальные состояния игры, позаимствованные с сайта [playgameoflife.com](https://playgameoflife.com/).