mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #432] [CLOSED] Semifactorial #814
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/432
Author: @LucaPalumbo
Created: 10/19/2019
Status: ❌ Closed
Base:
master← Head:semifactorial📝 Commits (10+)
6f50f4aAdded a program that evaluates if two words are anagrams810bca6Added LinkedList reversee973df5Bubble sort (lower to highe)6c5e2adCreated a new file of conversion without array.ee75226Create Q6.c5236d89Create DoublyLinkedListInsertion.c334e223Create Double Ended Queue.C82985e5Added primes_in_range.cc2f6c71add xor doubly linked listc030fd1Update 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.