I first heard about Conway's Game of Life during my university studies. This game, with its simple yet profound rules, amazed me—it’s incredible what such simplicity can achieve, much like in real life! 🌱 For a few days, I enjoyed exploring web-based versions, such as this one. Eventually, I decided to take it a step further and create my own version. 😄
- Any live cell with fewer than two live neighbors dies, as if by underpopulation.
- Any live cell with two or three live neighbors lives on to the next generation.
- Any live cell with more than three live neighbors dies, as if by overpopulation.
- Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
To be honest, I hate Java 🙄 (Just Kiddingggg 😔). I don't know what exactly, but Java looks like an unordered room 🤨 where everything is available, but you have to find them 💭. So, for the setup section, I'm just giving readers of this README the freedom to figure out how to run this project.
P.S. Or just simply download IntelliJ IDEA from JetBrains—JetBrains is cool 😏.