[PR #950] [CLOSED] feat: added game_of_life, to games. #1485

Open
opened 2026-01-29 15:21:17 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/950
Author: @DanArmor
Created: 6/16/2022
Status: Closed

Base: masterHead: master


📝 Commits (5)

📊 Changes

2 files changed (+359 additions, -1 deletions)

View changed files

📝 DIRECTORY.md (+2 -1)
games/game_of_life.c (+357 -0)

📄 Description

Description of Change

Game of life done in C

References

https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:
Solution in C

example of output: https://gifyu.com/image/SH6dQ


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/950 **Author:** [@DanArmor](https://github.com/DanArmor) **Created:** 6/16/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (5) - [`32fd938`](https://github.com/TheAlgorithms/C/commit/32fd938190b3b14938c5e480962b374719a80fdf) Init add of game_of_life - [`2706ec8`](https://github.com/TheAlgorithms/C/commit/2706ec8b977e08385d89d013920afdcef94bc173) game_of_life - [`47198a8`](https://github.com/TheAlgorithms/C/commit/47198a8cdc6575ede4e6f9ee7f9a8ed32beab595) game_of_life done - [`464b6d0`](https://github.com/TheAlgorithms/C/commit/464b6d08e3ce518adfc88a02be17c2944f26313f) updating DIRECTORY.md - [`490ee21`](https://github.com/TheAlgorithms/C/commit/490ee216e9a642afcfcf0b7ca7b2c179249aaea1) fix: clang-tidy minor fix ### 📊 Changes **2 files changed** (+359 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+2 -1) ➕ `games/game_of_life.c` (+357 -0) </details> ### 📄 Description #### Description of Change Game of life done in C <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> Solution in C example of output: https://gifyu.com/image/SH6dQ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:21:17 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1485