mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 21:41:08 +00:00
6314195bb1
* add 5 README files * empty commit to (hopefully) get rid of the `test-are-failling` label * Update ciphers/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update conversions/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update cellular_automata/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update computer_vision/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update conversions/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update compression/README.md Co-authored-by: John Law <johnlaw.po@gmail.com>
9 lines
441 B
Markdown
9 lines
441 B
Markdown
# Cellular Automata
|
|
|
|
Cellular automata are a way to simulate the behavior of "life", no matter if it is a robot or cell.
|
|
They usually follow simple rules but can lead to the creation of complex forms.
|
|
The most popular cellular automaton is Conway's [Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life).
|
|
|
|
* <https://en.wikipedia.org/wiki/Cellular_automaton>
|
|
* <https://mathworld.wolfram.com/ElementaryCellularAutomaton.html>
|