mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
9d86d4edaa
* feat(cellular_automata): Create wa-tor algorithm * updating DIRECTORY.md * chore(quality): Implement algo-keeper bot changes * Update cellular_automata/wa_tor.py Co-authored-by: Christian Clauss <cclauss@me.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * refactor(repr): Return repr as python object * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * Update cellular_automata/wa_tor.py Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> * refactor(display): Rename to display_visually to visualise * refactor(wa-tor): Use double for loop * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore(wa-tor): Implement suggestions from code review --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com> |
||
---|---|---|
.. | ||
__init__.py | ||
conways_game_of_life.py | ||
game_of_life.py | ||
nagel_schrekenberg.py | ||
one_dimensional.py | ||
README.md | ||
wa_tor.py |
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.