[PR #432] [CLOSED] Semifactorial #814

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/432
Author: @LucaPalumbo
Created: 10/19/2019
Status: Closed

Base: masterHead: semifactorial


📝 Commits (10+)

  • 6f50f4a Added a program that evaluates if two words are anagrams
  • 810bca6 Added LinkedList reverse
  • e973df5 Bubble sort (lower to highe)
  • 6c5e2ad Created a new file of conversion without array.
  • ee75226 Create Q6.c
  • 5236d89 Create DoublyLinkedListInsertion.c
  • 334e223 Create Double Ended Queue.C
  • 82985e5 Added primes_in_range.c
  • c2f6c71 add xor doubly linked list
  • c030fd1 Update isArmstrong.c

📊 Changes

32 files changed (+1700 additions, -146 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 CodingGuidelines.md (+5 -2)
📝 README.md (+18 -2)
cipher/rc4.c (+189 -0)
conversions/decimal_to_binary_without_array.c (+27 -0)
data_structures/binary_trees/splay_tree.c (+138 -0)
data_structures/linked_list/DoublyLinkedListInsertion.c (+247 -0)
data_structures/linked_list/reverse_linklist.c (+71 -0)
data_structures/linked_list/xor_doubly_linkedlist.c (+73 -0)
data_structures/queue/double_ended_queue.C (+116 -0)
📝 exercism/hello-world/hello_world.c (+7 -5)
📝 leetcode/README.md (+10 -2)
leetcode/src/2.c (+43 -0)
leetcode/src/21.c (+56 -0)
leetcode/src/28.c (+37 -0)
leetcode/src/4.c (+29 -0)
leetcode/src/5.c (+64 -0)
leetcode/src/7.c (+53 -0)
leetcode/src/8.c (+75 -0)
leetcode/src/9.c (+71 -0)

...and 12 more files

📄 Description

I have added the semifactorial function to Misc.


🔄 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/432 **Author:** [@LucaPalumbo](https://github.com/LucaPalumbo) **Created:** 10/19/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `semifactorial` --- ### 📝 Commits (10+) - [`6f50f4a`](https://github.com/TheAlgorithms/C/commit/6f50f4a38b7b05a354bfc09c6a1404e22c4a5427) Added a program that evaluates if two words are anagrams - [`810bca6`](https://github.com/TheAlgorithms/C/commit/810bca608a00ce67bbde25a3832e9ab14c595017) Added LinkedList reverse - [`e973df5`](https://github.com/TheAlgorithms/C/commit/e973df52f3c77c94acffa4f353d8e24ab2cadd01) Bubble sort (lower to highe) - [`6c5e2ad`](https://github.com/TheAlgorithms/C/commit/6c5e2ad94fe458a3383a095429356b9d6c1addf2) Created a new file of conversion without array. - [`ee75226`](https://github.com/TheAlgorithms/C/commit/ee75226c8eecc93ec2e4ede186818de1551ea8f5) Create Q6.c - [`5236d89`](https://github.com/TheAlgorithms/C/commit/5236d893f87eb1ce117fcc90bb95800c44bade8e) Create DoublyLinkedListInsertion.c - [`334e223`](https://github.com/TheAlgorithms/C/commit/334e22371c1cb151b02818d543b40fbe3b384616) Create Double Ended Queue.C - [`82985e5`](https://github.com/TheAlgorithms/C/commit/82985e5b6ac590d76283473b56efea21f8c26827) Added primes_in_range.c - [`c2f6c71`](https://github.com/TheAlgorithms/C/commit/c2f6c71975a22a02db4914b027a362d8d0d5cbb6) add xor doubly linked list - [`c030fd1`](https://github.com/TheAlgorithms/C/commit/c030fd18bec0c4b76cf35206b48188579d1ecaf2) Update isArmstrong.c ### 📊 Changes **32 files changed** (+1700 additions, -146 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `CodingGuidelines.md` (+5 -2) 📝 `README.md` (+18 -2) ➕ `cipher/rc4.c` (+189 -0) ➕ `conversions/decimal_to_binary_without_array.c` (+27 -0) ➕ `data_structures/binary_trees/splay_tree.c` (+138 -0) ➕ `data_structures/linked_list/DoublyLinkedListInsertion.c` (+247 -0) ➕ `data_structures/linked_list/reverse_linklist.c` (+71 -0) ➕ `data_structures/linked_list/xor_doubly_linkedlist.c` (+73 -0) ➕ `data_structures/queue/double_ended_queue.C` (+116 -0) 📝 `exercism/hello-world/hello_world.c` (+7 -5) 📝 `leetcode/README.md` (+10 -2) ➕ `leetcode/src/2.c` (+43 -0) ➕ `leetcode/src/21.c` (+56 -0) ➕ `leetcode/src/28.c` (+37 -0) ➕ `leetcode/src/4.c` (+29 -0) ➕ `leetcode/src/5.c` (+64 -0) ➕ `leetcode/src/7.c` (+53 -0) ➕ `leetcode/src/8.c` (+75 -0) ➕ `leetcode/src/9.c` (+71 -0) _...and 12 more files_ </details> ### 📄 Description I have added the semifactorial function to Misc. --- <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:29 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#814