An open API service indexing awesome lists of open source software.

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

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/).