moved stuff around
Some checks failed
Deploy Arise to html branch / Deploy Arise (push) Has been cancelled
Some checks failed
Deploy Arise to html branch / Deploy Arise (push) Has been cancelled
This commit is contained in:
parent
5de3a66916
commit
57a9445b9c
25 changed files with 21 additions and 289 deletions
23
arise-source/en/software/katas/conway-kata/index.md
Normal file
23
arise-source/en/software/katas/conway-kata/index.md
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!-- BEGIN ARISE ------------------------------
|
||||
Title:: "Conway's Kata"
|
||||
|
||||
Author:: "Jose Falanga"
|
||||
Description:: "Kata to try different programming paradigms"
|
||||
Language:: "en"
|
||||
Thumbnail:: "kanagawa.jpg"
|
||||
Published Date:: "2025-09-08"
|
||||
Modified Date:: "2022-09-08"
|
||||
|
||||
content_header:: "false"
|
||||
rss_hide:: "true"
|
||||
---- END ARISE \\ DO NOT MODIFY THIS LINE ---->
|
||||
# Conway's Kata
|
||||
|
||||
This is an exercise on programming paradigms, implement the rules using as many programming paradigms as you know. Personally I recommend testing OOP and ECS.
|
||||
|
||||
## Rules of Conway's Game of Life
|
||||
|
||||
- A living cell with less than two neighbors: Dies
|
||||
- A living cell with two or three neighbors: Survives
|
||||
- A living cell with more than three neighbors: Dies
|
||||
- A dead cell with exactly three neighbors: Becomes alive
|
||||
Loading…
Add table
Add a link
Reference in a new issue