freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/take-home-projects/build-the-game-of-life.russ...

39 lines
2.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: bd7154d8c242eddfaeb5bd13
title: Build the Game of Life
isRequired: false
challengeType: 3
videoUrl: ''
localeTitle: Постройте игру жизни
---
## Description
<section id="description"> <strong>Цель:</strong> создать приложение <a href="https://codepen.io" target="_blank">CodePen.io</a> , функционально похожее на это: <a href="https://codepen.io/freeCodeCamp/full/BpwMZv/" target="_blank">https://codepen.io/freeCodeCamp/full/BpwMZv/</a> . Выполняйте приведенные ниже <a href="https://en.wikipedia.org/wiki/User_story" target="_blank">истории пользователей</a> . Используйте любые библиотеки или API, которые вам нужны. Дайте ему свой личный стиль. <strong>User Story:</strong> Когда я впервые прихожу к игре, она будет произвольно создавать доску и начать играть. <strong>User Story:</strong> Я могу начать и остановить доску. <strong>User Story:</strong> Я могу настроить доску. <strong>История пользователя:</strong> я могу очистить доску. <strong>User Story:</strong> Когда я нажимаю start, игра будет разыгрываться. <strong>История пользователя:</strong> каждый раз, когда изменяется доска, я вижу, сколько поколений прошло. <strong>Подсказка:</strong> вот объяснение игры жизни Конвея от самого Джона Конвея: <a href="https://www.youtube.com/watch?v=E8kUJL04ELA" target="_blank">https://www.youtube.com/watch?v=E8kUJL04ELA</a> <strong>Подсказка:</strong> вот обзор игры Жизни Конвея с правилами для вашей справки: <a href="https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" target="_blank">https: // ru.wikipedia.org/wiki/Conway%27s_Game_of_Life Не</a> забудьте использовать <a href="//github.com/FreeCodeCamp/freecodecamp/wiki/FreeCodeCamp-Get-Help" target="_blank">Read-Search-Ask,</a> если вы застряли. Когда вы закончите, нажмите кнопку «Я закончил эту задачу» и включите ссылку на вашу CodePen. Вы можете получить отзывы о своем проекте, поделившись с друзьями на Facebook. </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>