Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaarlee/coderetreat
Game Of Life Code Retreat
https://github.com/chaarlee/coderetreat
Last synced: 30 days ago
JSON representation
Game Of Life Code Retreat
- Host: GitHub
- URL: https://github.com/chaarlee/coderetreat
- Owner: chaarlee
- Created: 2015-01-24T08:16:55.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-25T16:29:50.000Z (almost 10 years ago)
- Last Synced: 2024-08-04T01:25:04.057Z (4 months ago)
- Language: JavaScript
- Size: 19.8 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game Of Life Code Retreat
- Valósítsd meg a Game Of Life játékot
- A generációkat nem kell vizualizálni
- A feladatot csak addig kell elvinni, hogy egy generációból ki tudj számolni egy következőt
- Nem kell megvalósítani a .lif fileok beolvasását, teszteléshez használd a lentebbi mintákat
- Egy kör 45 percig tart, ezt egy gyors Retrospective követi
- A kódokat nem lehet újra használni!## Szabályok
1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.
2. Any live cell with two or three live neighbours lives on to the next generation.
3. Any live cell with more than three live neighbours dies, as if by overcrowding.
4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.```
Block
**
**Blinker
.*.
.*.
.*.Glider
..*
*.*
.**
```Ne felejtsd el, hogy a világ végtelen! :)