All Projects → SimonWaldherr → cgolGo

SimonWaldherr / cgolGo

Licence: MIT license
Conway's Game of Life in Golang

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to cgolGo

conway
Conway's game of life
Stars: ✭ 27 (-28.95%)
Mutual labels:  conway-game, conway, gif
GameOfLife
Conway's Game of Life
Stars: ✭ 18 (-52.63%)
Mutual labels:  gameoflife, conway-game
nepactober
Celebrating hactober fest 2021. Making open source great.
Stars: ✭ 14 (-63.16%)
Mutual labels:  hacktoberfest-accepted
opensource-4-everyone
Learn Opensource and make your first contribution here.
Stars: ✭ 35 (-7.89%)
Mutual labels:  hacktoberfest-accepted
LeetCode-Problems-Solution-Book
REPOSITORY EXCLUDED FROM HACKTOBERFEST 2021, CHECK THIS : https://github.com/piyushsharma220699/Hacktoberfest-2021/issues/261
Stars: ✭ 35 (-7.89%)
Mutual labels:  hacktoberfest-accepted
Open-Imaging
Tools and libraries that deal with the creation and processing of images.
Stars: ✭ 100 (+163.16%)
Mutual labels:  gif
HacktoberFest2021
No description or website provided.
Stars: ✭ 33 (-13.16%)
Mutual labels:  hacktoberfest-accepted
Frontend-Animations
Frontend Animation Projects.🚀
Stars: ✭ 20 (-47.37%)
Mutual labels:  hacktoberfest-accepted
1stHacktoberfest
Web / Android app base on Flutter(2.5.2).
Stars: ✭ 35 (-7.89%)
Mutual labels:  hacktoberfest-accepted
Hacktoberfest-2021
❗❗ Make your first PR now, accepting and merging PRs continuously. ⭐HACKTOBER ACCEPTED 2021 ✨✨Happy Hacking 💖💖
Stars: ✭ 11 (-71.05%)
Mutual labels:  hacktoberfest-accepted
SwiftyGiphy
A UI and API layer for Giphy discovery and integration.
Stars: ✭ 90 (+136.84%)
Mutual labels:  gif
typiform
⚛️ A serverless React powered online form builder that works like a doc.
Stars: ✭ 16 (-57.89%)
Mutual labels:  hacktoberfest-accepted
College-Notes
Contribute your handwritten PDF notes and help other students ✌ #DecodersCommunity 🖤
Stars: ✭ 30 (-21.05%)
Mutual labels:  hacktoberfest-accepted
J.A.R.V.I.S
Just A Rather Very Intelligent System
Stars: ✭ 36 (-5.26%)
Mutual labels:  hacktoberfest-accepted
music-dl
Download any song in highest mp3 quality with a simple search!
Stars: ✭ 32 (-15.79%)
Mutual labels:  hacktoberfest-accepted
Instagram-mass-reporter
This bot helps users to mass report Instagram accounts
Stars: ✭ 229 (+502.63%)
Mutual labels:  hacktoberfest-accepted
Login-Register-FlutterApp
Login Register Auth App by Delicia Fernandes using Google and Facebook sign in.
Stars: ✭ 87 (+128.95%)
Mutual labels:  hacktoberfest-accepted
HacktoberFest21
A beginner friendly repository for HacktoberFest 2021
Stars: ✭ 45 (+18.42%)
Mutual labels:  hacktoberfest-accepted
Hacktoberfest-Indonesia-2021
Event Hacktoberfest Indonesia 2021
Stars: ✭ 42 (+10.53%)
Mutual labels:  hacktoberfest-accepted
Rboxlo
Roblox private server
Stars: ✭ 173 (+355.26%)
Mutual labels:  hacktoberfest-accepted

cgolGo

Codacy Badge BCH compliance Travis CI Go Report Card Codebeat badge Coverage Status GoDoc License MIT

Conway's game of life in Golang

Conway's Game of Life in Golang

Conway's Game of Life is a zero-player game - a cellular automaton simulation invented by John Horton Conway. There are many implementations in every important programming language here on GitHub. The map of a Game of Life consists of a two-dimensional grid of square cells. Each cell can have one of to two possible states - dead or alive. The future of a cell is determined by its own current status and that of the eight direct neighbors - vertically, horizontally and diagonally.

  • a living cell with two or three living neighbors stays alive
  • a dead cell with three living neighbors becomes a live cell
  • every other cell will be a dead cell in the next round

Examples

01.gif

01.gif

02.gif

02.gif

03.gif

03.gif

15.gif

15.gif

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].