Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a tutorial on Game of Life activity #382

Closed
llaske opened this issue Sep 28, 2019 · 2 comments
Closed

Add a tutorial on Game of Life activity #382

llaske opened this issue Sep 28, 2019 · 2 comments
Labels
enhancement to be release Fixed, to be release
Milestone

Comments

@llaske
Copy link
Owner

llaske commented Sep 28, 2019

Add a tutorial to the Game of Life, is specifically important to give rules of the game as specified in Wikipedia:
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.
@llaske
Copy link
Owner Author

llaske commented Nov 17, 2019

A full tutorial to integrate a tutorial into an activity is now here https://github.com/llaske/sugarizer/blob/dev/docs/tutorial_step9.md

@llaske
Copy link
Owner Author

llaske commented Dec 26, 2019

Fixed in #527

@llaske llaske added the to be release Fixed, to be release label Dec 26, 2019
@llaske llaske added this to the v1.3 milestone Mar 11, 2020
@llaske llaske closed this as completed Mar 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement to be release Fixed, to be release
Projects
None yet
Development

No branches or pull requests

1 participant