[PR #382] [CLOSED] Create factsimple #744

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

📋 Pull Request Information

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

Base: masterHead: patch-1


📝 Commits (10+)

  • 1e5afcc updated README.md
  • 80997b9 updated CodingGuidelines.md
  • 89069e2 updated CodingGuidelines.md
  • 4cd255d updated shellSort.c
  • 69a263b 7.c :reverse of a number with overflow check added
  • 19c2e93 9.c :pallindrome of a number with overflow check added
  • 15f4fb1 README.md updated
  • e8da4c7 Added solution to leetcode problem 190 in C
  • 5a6ed8e Added Solution to leetcode Problem 191
  • 1f88545 Added solution to Leetcode Problem 461

📊 Changes

34 files changed (+982 additions, -136 deletions)

View changed files

📝 CodingGuidelines.md (+5 -2)
📝 README.md (+15 -1)
cipher/rc4.c (+189 -0)
data_structures/binary_trees/splay_tree.c (+138 -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)
📝 leetcode/src/617.c (+1 -1)
leetcode/src/7.c (+53 -0)

...and 14 more files

📄 Description

No description provided


🔄 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/382 **Author:** [@codetheorem](https://github.com/codetheorem) **Created:** 10/8/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `patch-1` --- ### 📝 Commits (10+) - [`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 - [`4cd255d`](https://github.com/TheAlgorithms/C/commit/4cd255d2902f000c10c54d81dbbb08062bda31ca) updated shellSort.c - [`69a263b`](https://github.com/TheAlgorithms/C/commit/69a263be3fa2b4f30bcb02ca90166a323dc5ce8c) 7.c :reverse of a number with overflow check added - [`19c2e93`](https://github.com/TheAlgorithms/C/commit/19c2e9369d32f41b10b2f7f50462352c3911c077) 9.c :pallindrome of a number with overflow check added - [`15f4fb1`](https://github.com/TheAlgorithms/C/commit/15f4fb19868ddf19723169223b7d1ad68fbfc0c6) README.md updated - [`e8da4c7`](https://github.com/TheAlgorithms/C/commit/e8da4c7714fe2ae92f91e13d93dcce74b319bc7a) Added solution to leetcode problem 190 in C - [`5a6ed8e`](https://github.com/TheAlgorithms/C/commit/5a6ed8e245e7544fce060d92919a353393bfd064) Added Solution to leetcode Problem 191 - [`1f88545`](https://github.com/TheAlgorithms/C/commit/1f88545538b0a3f7e96a999748f0dee5d21af6cb) Added solution to Leetcode Problem 461 ### 📊 Changes **34 files changed** (+982 additions, -136 deletions) <details> <summary>View changed files</summary> 📝 `CodingGuidelines.md` (+5 -2) 📝 `README.md` (+15 -1) ➕ `cipher/rc4.c` (+189 -0) ➕ `data_structures/binary_trees/splay_tree.c` (+138 -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) 📝 `leetcode/src/617.c` (+1 -1) ➕ `leetcode/src/7.c` (+53 -0) _...and 14 more files_ </details> ### 📄 Description _No description provided_ --- <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:14:57 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#744