[PR #295] [CLOSED] Create Factorial #606

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/295
Author: @JustinGuerrero
Created: 10/1/2019
Status: Closed

Base: prime_fact_corHead: master


📝 Commits (10+)

  • ac7a937 Added Client Server Implementation
  • a2bc982 Added instructions for Client Server Implementation
  • 37314fb number invalid if number >= base
  • 82436cc An efficient solution.
  • a13df71 Merge pull request #217 from TheAlgorithms/add_prime_factoriziation
  • a080a2a Merge pull request #218 from TheAlgorithms/prime_fact_cor
  • 49d82f1 refactoring
  • b5e5bb1 Merge pull request #219 from TheAlgorithms/changed_main_C
  • 02cf095 fixed bug and refactored
  • a80d748 simplefy

📊 Changes

115 files changed (+5420 additions, -436 deletions)

View changed files

.gitignore (+2 -0)
LICENSE (+674 -0)
📝 README.md (+36 -5)
Simple Client Server/client.c (+66 -0)
Simple Client Server/server.c (+96 -0)
📝 conversions/toDecimal.c (+3 -1)
data_structures/binary_trees/redBlackTree.c (+678 -0)
data_structures/graphs/BFS.c (+188 -0)
data_structures/graphs/DFS.c (+128 -0)
data_structures/graphs/strongly_connected_components.c (+211 -0)
data_structures/graphs/topologicalSort.c (+164 -0)
data_structures/heap/maxheap.c (+121 -0)
data_structures/heap/minheap.c (+121 -0)
data_structures/list/Makefile (+12 -0)
data_structures/list/list.c (+73 -0)
data_structures/list/list.h (+23 -0)
data_structures/list/main.c (+36 -0)
📝 data_structures/stack.c (+4 -1)
📝 data_structures/stack/README.md (+4 -3)
data_structures/stack/balanced parenthesis using stack in C (+0 -89)

...and 80 more files

📄 Description

See notes inside Notepadd++ file, IDE, or open with linux command line

Factorial Calculator with stars.zip


🔄 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/295 **Author:** [@JustinGuerrero](https://github.com/JustinGuerrero) **Created:** 10/1/2019 **Status:** ❌ Closed **Base:** `prime_fact_cor` ← **Head:** `master` --- ### 📝 Commits (10+) - [`ac7a937`](https://github.com/TheAlgorithms/C/commit/ac7a9375326046c1b1f7ddcea1b0a73e7ba02648) Added Client Server Implementation - [`a2bc982`](https://github.com/TheAlgorithms/C/commit/a2bc9825e25d10a5e36c09239be3ea75b3de0029) Added instructions for Client Server Implementation - [`37314fb`](https://github.com/TheAlgorithms/C/commit/37314fb5bf9a8104665def22a2f657e7f4046baa) number invalid if number >= base - [`82436cc`](https://github.com/TheAlgorithms/C/commit/82436cc4e0516c34eaec76e8c844de4d180fc29b) An efficient solution. - [`a13df71`](https://github.com/TheAlgorithms/C/commit/a13df71739ac230a2b5eec24f15e7533d2c05f8d) Merge pull request #217 from TheAlgorithms/add_prime_factoriziation - [`a080a2a`](https://github.com/TheAlgorithms/C/commit/a080a2aa64ee284ae9a9719db39eae145582cece) Merge pull request #218 from TheAlgorithms/prime_fact_cor - [`49d82f1`](https://github.com/TheAlgorithms/C/commit/49d82f1fdeb7825fcc77766f8afbbd4a2589d071) refactoring - [`b5e5bb1`](https://github.com/TheAlgorithms/C/commit/b5e5bb128446508cad87d7775fbf933f5baafcd8) Merge pull request #219 from TheAlgorithms/changed_main_C - [`02cf095`](https://github.com/TheAlgorithms/C/commit/02cf0956533939badcd92c0a1685f5dc7b138a45) fixed bug and refactored - [`a80d748`](https://github.com/TheAlgorithms/C/commit/a80d7487aec0b99a019f4973b1f115ca9bba97c0) simplefy ### 📊 Changes **115 files changed** (+5420 additions, -436 deletions) <details> <summary>View changed files</summary> ➕ `.gitignore` (+2 -0) ➕ `LICENSE` (+674 -0) 📝 `README.md` (+36 -5) ➕ `Simple Client Server/client.c` (+66 -0) ➕ `Simple Client Server/server.c` (+96 -0) 📝 `conversions/toDecimal.c` (+3 -1) ➕ `data_structures/binary_trees/redBlackTree.c` (+678 -0) ➕ `data_structures/graphs/BFS.c` (+188 -0) ➕ `data_structures/graphs/DFS.c` (+128 -0) ➕ `data_structures/graphs/strongly_connected_components.c` (+211 -0) ➕ `data_structures/graphs/topologicalSort.c` (+164 -0) ➕ `data_structures/heap/maxheap.c` (+121 -0) ➕ `data_structures/heap/minheap.c` (+121 -0) ➕ `data_structures/list/Makefile` (+12 -0) ➕ `data_structures/list/list.c` (+73 -0) ➕ `data_structures/list/list.h` (+23 -0) ➕ `data_structures/list/main.c` (+36 -0) 📝 `data_structures/stack.c` (+4 -1) 📝 `data_structures/stack/README.md` (+4 -3) ➖ `data_structures/stack/balanced parenthesis using stack in C` (+0 -89) _...and 80 more files_ </details> ### 📄 Description See notes inside Notepadd++ file, IDE, or open with linux command line [Factorial Calculator with stars.zip](https://github.com/TheAlgorithms/C/files/3677779/Factorial.Calculator.with.stars.zip) --- <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:06 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#606