[PR #388] [CLOSED] Create area #754

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/388
Author: @misaelgosantos
Created: 10/8/2019
Status: Closed

Base: masterHead: patch-1


📝 Commits (10+)

  • 6f50f4a Added a program that evaluates if two words are anagrams
  • 5236d89 Create DoublyLinkedListInsertion.c
  • 82985e5 Added primes_in_range.c
  • c030fd1 Update isArmstrong.c
  • 1e5afcc updated README.md
  • 80997b9 updated CodingGuidelines.md
  • 89069e2 updated CodingGuidelines.md
  • bbd54a9 updated .gitignore
  • 4cd255d updated shellSort.c
  • ac66bb4 Update countingSort.c

📊 Changes

41 files changed (+1469 additions, -186 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 CodingGuidelines.md (+5 -2)
📝 README.md (+17 -2)
cipher/rc4.c (+189 -0)
data_structures/binary_trees/splay_tree.c (+138 -0)
data_structures/linked_list/DoublyLinkedListInsertion.c (+247 -0)
📝 exercism/hello-world/hello_world.c (+7 -5)
📝 leetcode/README.md (+14 -2)
📝 leetcode/src/1189.c (+8 -8)
leetcode/src/190.c (+13 -0)
leetcode/src/191.c (+10 -0)
leetcode/src/2.c (+43 -0)
leetcode/src/21.c (+56 -0)
leetcode/src/28.c (+37 -0)
📝 leetcode/src/283.c (+6 -4)
📝 leetcode/src/35.c (+12 -0)
leetcode/src/4.c (+29 -0)
leetcode/src/461.c (+12 -0)
leetcode/src/476.c (+15 -0)
leetcode/src/5.c (+64 -0)

...and 21 more files

📄 Description

Area types


🔄 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/388 **Author:** [@misaelgosantos](https://github.com/misaelgosantos) **Created:** 10/8/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `patch-1` --- ### 📝 Commits (10+) - [`6f50f4a`](https://github.com/TheAlgorithms/C/commit/6f50f4a38b7b05a354bfc09c6a1404e22c4a5427) Added a program that evaluates if two words are anagrams - [`5236d89`](https://github.com/TheAlgorithms/C/commit/5236d893f87eb1ce117fcc90bb95800c44bade8e) Create DoublyLinkedListInsertion.c - [`82985e5`](https://github.com/TheAlgorithms/C/commit/82985e5b6ac590d76283473b56efea21f8c26827) Added primes_in_range.c - [`c030fd1`](https://github.com/TheAlgorithms/C/commit/c030fd18bec0c4b76cf35206b48188579d1ecaf2) Update isArmstrong.c - [`1e5afcc`](https://github.com/TheAlgorithms/C/commit/1e5afcc8e0d863d267e62a4c00b1f86d42000883) updated README.md - [`80997b9`](https://github.com/TheAlgorithms/C/commit/80997b94b08556fa9296aebe1777550ef95b03c3) updated CodingGuidelines.md - [`89069e2`](https://github.com/TheAlgorithms/C/commit/89069e2d5ece298489b2d5e3f34b7f891bde8882) updated CodingGuidelines.md - [`bbd54a9`](https://github.com/TheAlgorithms/C/commit/bbd54a9f48b15acfb1d9dd274c25020989f19c33) updated .gitignore - [`4cd255d`](https://github.com/TheAlgorithms/C/commit/4cd255d2902f000c10c54d81dbbb08062bda31ca) updated shellSort.c - [`ac66bb4`](https://github.com/TheAlgorithms/C/commit/ac66bb494bd551fca377bd601d7b657bdda7b4f0) Update countingSort.c ### 📊 Changes **41 files changed** (+1469 additions, -186 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `CodingGuidelines.md` (+5 -2) 📝 `README.md` (+17 -2) ➕ `cipher/rc4.c` (+189 -0) ➕ `data_structures/binary_trees/splay_tree.c` (+138 -0) ➕ `data_structures/linked_list/DoublyLinkedListInsertion.c` (+247 -0) 📝 `exercism/hello-world/hello_world.c` (+7 -5) 📝 `leetcode/README.md` (+14 -2) 📝 `leetcode/src/1189.c` (+8 -8) ➕ `leetcode/src/190.c` (+13 -0) ➕ `leetcode/src/191.c` (+10 -0) ➕ `leetcode/src/2.c` (+43 -0) ➕ `leetcode/src/21.c` (+56 -0) ➕ `leetcode/src/28.c` (+37 -0) 📝 `leetcode/src/283.c` (+6 -4) 📝 `leetcode/src/35.c` (+12 -0) ➕ `leetcode/src/4.c` (+29 -0) ➕ `leetcode/src/461.c` (+12 -0) ➕ `leetcode/src/476.c` (+15 -0) ➕ `leetcode/src/5.c` (+64 -0) _...and 21 more files_ </details> ### 📄 Description Area types --- <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:15:01 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#754