freeCodeCamp/curriculum/challenges/german/10-coding-interview-prep/take-home-projects/build-the-game-of-life.md

47 lines
2.2 KiB
Markdown
Raw Normal View History

---
id: bd7154d8c242eddfaeb5bd13
title: Build the Game of Life
challengeType: 3
forumTopicId: 302362
dashedName: build-the-game-of-life
---
# --description--
**Objective:** Build an app that is functionally similar to this: <a href="https://codepen.io/freeCodeCamp/full/BpwMZv/" target="_blank" rel="noopener noreferrer nofollow">https://codepen.io/freeCodeCamp/full/BpwMZv/</a>.
The Game of Life is a cellular automaton devised by the British mathematician John Horton Conway. It is a <em>zero-player game</em>, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves.
The universe of the Game of Life is an infinite, two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, populated and unpopulated. Every cell interacts with its eight neighbours, which are the cells that are horizontally, vertically, or diagonally adjacent.
At each step in time, the following transitions occur:
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
Erfülle die folgenden User Stories und bestehe alle Tests. Verwende Bibliotheken und APIs deiner Wahl. Gib dem Ganzen deinen persönlichen Stil.
**User Story:** When I first arrive at the game, it will randomly generate a board and start playing.
**User Story:** I can start and stop the board.
**User Story:** I can set up the board.
**User Story:** I can clear the board.
**User Story:** When I press start, the game will play out.
**User Story:** Each time the board changes, I can see how many generations have gone by.
When you are finished, include a link to your project and click the "I've completed this challenge" button.
You can get feedback on your project by sharing it on the <a href="https://forum.freecodecamp.org/c/project-feedback/409" target="_blank" rel="noopener noreferrer nofollow">freeCodeCamp forum</a>.
# --solutions--
```js
// solution required
```