[PR #1177] [MERGED] chore: Separated math category out from Misc #1754

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1177
Author: @SpiderMath
Created: 12/9/2022
Status: Merged
Merged: 12/22/2022
Merged by: @Panquesito7

Base: masterHead: separate-maths


📝 Commits (3)

  • a9bd95a Separated math category out from Misc
  • d0c1b52 Merge branch 'master' into separate-maths
  • befd876 Merge branch 'master' into separate-maths

📊 Changes

22 files changed (+1 additions, -1 deletions)

View changed files

📝 math/armstrong_number.c (+0 -0)
📝 math/cantor_set.c (+0 -0)
📝 math/cartesian_to_polar.c (+0 -0)
📝 math/catalan.c (+0 -0)
📝 math/collatz.c (+0 -0)
📝 math/factorial.c (+0 -0)
📝 math/factorial_large_number.c (+0 -0)
📝 math/factorial_trailing_zeroes.c (+0 -0)
📝 math/fibonacci.c (+0 -0)
📝 math/fibonacci_dp.c (+0 -0)
📝 math/fibonacci_fast.c (+0 -0)
📝 math/fibonacci_formula.c (+0 -0)
📝 math/gcd.c (+0 -0)
📝 math/is_armstrong.c (+0 -0)
📝 math/large_factorials.c (+0 -0)
📝 math/lcm.c (+0 -0)
📝 math/lerp.c (+0 -0)
📝 math/palindrome.c (+0 -0)
📝 math/prime.c (+0 -0)
📝 math/prime_factoriziation.c (+0 -0)

...and 2 more files

📄 Description

Description of Change

This PR aims to separate out the algorithms categorized under math on the website which were classified under the misc directory.
Changes made:

  • Moved related files from misc to math
  • Fixed a typo in prime-sieve

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes: This is regarding the post on the forum in the discord server


🔄 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/1177 **Author:** [@SpiderMath](https://github.com/SpiderMath) **Created:** 12/9/2022 **Status:** ✅ Merged **Merged:** 12/22/2022 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `separate-maths` --- ### 📝 Commits (3) - [`a9bd95a`](https://github.com/TheAlgorithms/C/commit/a9bd95a7df049e452065b6461a4c8e7656301f5f) Separated math category out from Misc - [`d0c1b52`](https://github.com/TheAlgorithms/C/commit/d0c1b5240904afb549448a0cce2b9536b252cac0) Merge branch 'master' into separate-maths - [`befd876`](https://github.com/TheAlgorithms/C/commit/befd876c00663ad59e02944d5e39f7fb99b88a34) Merge branch 'master' into separate-maths ### 📊 Changes **22 files changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `math/armstrong_number.c` (+0 -0) 📝 `math/cantor_set.c` (+0 -0) 📝 `math/cartesian_to_polar.c` (+0 -0) 📝 `math/catalan.c` (+0 -0) 📝 `math/collatz.c` (+0 -0) 📝 `math/factorial.c` (+0 -0) 📝 `math/factorial_large_number.c` (+0 -0) 📝 `math/factorial_trailing_zeroes.c` (+0 -0) 📝 `math/fibonacci.c` (+0 -0) 📝 `math/fibonacci_dp.c` (+0 -0) 📝 `math/fibonacci_fast.c` (+0 -0) 📝 `math/fibonacci_formula.c` (+0 -0) 📝 `math/gcd.c` (+0 -0) 📝 `math/is_armstrong.c` (+0 -0) 📝 `math/large_factorials.c` (+0 -0) 📝 `math/lcm.c` (+0 -0) 📝 `math/lerp.c` (+0 -0) 📝 `math/palindrome.c` (+0 -0) 📝 `math/prime.c` (+0 -0) 📝 `math/prime_factoriziation.c` (+0 -0) _...and 2 more files_ </details> ### 📄 Description #### Description of Change This PR aims to separate out the algorithms categorized under `math` on the website which were classified under the `misc` directory. **Changes made:** - Moved related files from `misc` to `math` - Fixed a typo in prime-sieve <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: This is regarding the post on the forum in the discord server --- <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:24:18 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1754