[PR #1407] [CLOSED] refactor prime_factorization.c #2002

Closed
opened 2026-01-29 15:27:20 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1407
Author: @isidroas
Created: 8/24/2024
Status: Closed

Base: masterHead: refactor_prime_factor


📝 Commits (3)

  • 4f6de99 fix(prime_factorization.c) memory error
  • dcf0ad3 Rename the file to correct spelling
  • 397b10a refactor(prime_factorization.c): reuse code if body

📊 Changes

1 file changed (+19 additions, -34 deletions)

View changed files

📝 math/prime_factorization.c (+19 -34)

📄 Description

  • fix(prime_factorization.c) memory error
  • Rename the file to correct spelling
  • refactor(prime_factorization.c): reuse code if body

Please, look at the text of the commits

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • 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 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/1407 **Author:** [@isidroas](https://github.com/isidroas) **Created:** 8/24/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `refactor_prime_factor` --- ### 📝 Commits (3) - [`4f6de99`](https://github.com/TheAlgorithms/C/commit/4f6de99b175192fd7ae6f06ce9750105c3791cf3) fix(prime_factorization.c) memory error - [`dcf0ad3`](https://github.com/TheAlgorithms/C/commit/dcf0ad3d854e1ffc12d71de68c79f106e8628379) Rename the file to correct spelling - [`397b10a`](https://github.com/TheAlgorithms/C/commit/397b10a403cc1df99d6c5e9457dc49944312526b) refactor(prime_factorization.c): reuse code if body ### 📊 Changes **1 file changed** (+19 additions, -34 deletions) <details> <summary>View changed files</summary> 📝 `math/prime_factorization.c` (+19 -34) </details> ### 📄 Description - **fix(prime_factorization.c) memory error** - **Rename the file to correct spelling** - **refactor(prime_factorization.c): reuse code if body** Please, look at the text of the commits #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [X] Added description of change - [ ] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ ] Added tests and example, test must pass - [X] Relevant documentation/comments is changed or added - [X] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [ ] 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: <!-- Please add a one-line description for developers or pull request viewers --> --- <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:27:20 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#2002