Community
Replit 101 Coding Helpline
Wed Mar 29 2023
Old Coder, New Tricks | feat/ Kody Low
Wed Apr 05 2023
Replit 101 Coding Helpline
Wed Apr 12 2023
Explore the Community Hub
FEATURED
TOP GLOBAL TIPPERS
1
JDOG787
110.2K
2
d31337
97.4K
3
CoderGautamYT
35.2K
4
SHADOWMSTD
29.1K
5
vertal
25.5K
104
Conway's Game of LifeWelcome to Conway's Game of Life a example of cellular automata
THIS VERSION ALLOWS YOU TO PLACE THE BLOCKS
100% of code made my me
First invented by John Conway
CONTROLS
Use WASD or Arrowkeys to move your cursor
Hit ENTER to place a cell (If your cursor is over a placed cell it will destroy that cell)
Hit SPACE to start and stop the simulation
Hit E to show the population
Hit Q to increase the board size
Hit X to manually control the simulation
Hit TAB to change board look (Total of 7 looks)
CONWAY'S GAME OF LIFE RULES
If an alive cell is touching 2 or 3 alive cells is lives on
But if it's touching less then 2 or more than 3 it dies
If a dead cell is touching 3* alive cells it comes back to life
Comment your coolest patterns
Here's one to try:
::: ⬜️ :::
::: ::: ⬜️
⬜️ ⬜️ ⬜️
THE GLIDER
Glides across the screen
7K
65
104
87
Game Of LifeThis program simulates Conway's Game Of Life in the console!
What is Conways Game Of Life?
It's basically a program that simulates a cell automation. It just replicates the behaviour of population. A cell has 2 possible states, alive, or dead. Every generation, a cells life is determined by its 8 neighbours.
Rules:
If a cell has 2 or 3 neighbours that are alive, then the cell stays alive.
If a cell is dead and has 3 neighbours, it comes back to life.
If a cell is alive with less than 2 neighbours, it dies due to loneliness.
If a cell is alive with more than 3 neighbours it dies due to being overwhelmed by overpopulation.
7.5K
72
87
3
game-of-life-rustGame of Life, but in Rust
475
4
3
3
Game of lifeNo, it's not the game of life where you get a job, its the one made by mathematician John Conway, who sadly passed away on April 11, 2020.
34
6
3