[PR #938] [CLOSED] Adding curated list of patterns with their programs under the name of patterns directory #1469

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/938
Author: @Kranthi-Guribilli
Created: 2/4/2022
Status: Closed

Base: masterHead: master


📝 Commits (3)

  • f969351 Adding a patterns directory
  • 050450f Delete Patterns directory
  • 9b4d032 adding a new directory (patterns)

📊 Changes

30 files changed (+1016 additions, -0 deletions)

View changed files

patterns/README.md (+318 -0)
patterns/code_snippets/1.c (+12 -0)
patterns/code_snippets/10.c (+16 -0)
patterns/code_snippets/11.c (+17 -0)
patterns/code_snippets/12.c (+25 -0)
patterns/code_snippets/13_hollow_pyramid.c (+26 -0)
patterns/code_snippets/14_inverted_hollow_pyramid.c (+26 -0)
patterns/code_snippets/15_hollow_diamond.c (+42 -0)
patterns/code_snippets/16_pascals_triangle.c (+20 -0)
patterns/code_snippets/17.c (+31 -0)
patterns/code_snippets/18_hollow_diamond_inscribed_in_triangle.c (+35 -0)
patterns/code_snippets/19_butterfly.c (+35 -0)
patterns/code_snippets/20.c (+20 -0)
patterns/code_snippets/21_floydss_triangle.c (+14 -0)
patterns/code_snippets/22_binary_triangle.c (+18 -0)
patterns/code_snippets/24.c (+51 -0)
patterns/code_snippets/25_hollow_rhombus.c (+22 -0)
patterns/code_snippets/26.c (+13 -0)
patterns/code_snippets/28.c (+55 -0)
patterns/code_snippets/29.c (+35 -0)

...and 10 more files

📄 Description

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • 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:


🔄 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/938 **Author:** [@Kranthi-Guribilli](https://github.com/Kranthi-Guribilli) **Created:** 2/4/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`f969351`](https://github.com/TheAlgorithms/C/commit/f9693516e37d51cc8b4edaa499e6da67fd8ceafe) Adding a patterns directory - [`050450f`](https://github.com/TheAlgorithms/C/commit/050450f46d416a2e992c59a2c67f4cd73043378e) Delete Patterns directory - [`9b4d032`](https://github.com/TheAlgorithms/C/commit/9b4d032de69a55c8133f6bf9ab6cfbe7ed2df1d8) adding a new directory (patterns) ### 📊 Changes **30 files changed** (+1016 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `patterns/README.md` (+318 -0) ➕ `patterns/code_snippets/1.c` (+12 -0) ➕ `patterns/code_snippets/10.c` (+16 -0) ➕ `patterns/code_snippets/11.c` (+17 -0) ➕ `patterns/code_snippets/12.c` (+25 -0) ➕ `patterns/code_snippets/13_hollow_pyramid.c` (+26 -0) ➕ `patterns/code_snippets/14_inverted_hollow_pyramid.c` (+26 -0) ➕ `patterns/code_snippets/15_hollow_diamond.c` (+42 -0) ➕ `patterns/code_snippets/16_pascals_triangle.c` (+20 -0) ➕ `patterns/code_snippets/17.c` (+31 -0) ➕ `patterns/code_snippets/18_hollow_diamond_inscribed_in_triangle.c` (+35 -0) ➕ `patterns/code_snippets/19_butterfly.c` (+35 -0) ➕ `patterns/code_snippets/20.c` (+20 -0) ➕ `patterns/code_snippets/21_floydss_triangle.c` (+14 -0) ➕ `patterns/code_snippets/22_binary_triangle.c` (+18 -0) ➕ `patterns/code_snippets/24.c` (+51 -0) ➕ `patterns/code_snippets/25_hollow_rhombus.c` (+22 -0) ➕ `patterns/code_snippets/26.c` (+13 -0) ➕ `patterns/code_snippets/28.c` (+55 -0) ➕ `patterns/code_snippets/29.c` (+35 -0) _...and 10 more files_ </details> ### 📄 Description #### Description of Change <!-- 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 --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [ ] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ ] Added tests and example, test must pass - [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 --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/938"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <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:05 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1469