[PR #1369] [CLOSED] Implementing Radix using C programming #1971

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1369
Author: @sricharan200
Created: 11/15/2023
Status: Closed

Base: masterHead: master


📝 Commits (2)

📊 Changes

2 files changed (+97 additions, -71 deletions)

View changed files

math/factorial_recursion.c (+28 -0)
📝 sorting/radix_sort.c (+69 -71)

📄 Description

Description of Change

Radix sort using C programming.

References

Checklist

  • 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: Hey, I have raised a pull request. This is part of my coursework assignment. Kindly, look into it. Thank you


🔄 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/1369 **Author:** [@sricharan200](https://github.com/sricharan200) **Created:** 11/15/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (2) - [`13e10f9`](https://github.com/TheAlgorithms/C/commit/13e10f993ff888bfbafe74783d99554d8ae1f0e4) Add files via upload - [`bdbb88f`](https://github.com/TheAlgorithms/C/commit/bdbb88f7b0170ba209924aa2b1792c49c3ea15b4) Add files via upload ### 📊 Changes **2 files changed** (+97 additions, -71 deletions) <details> <summary>View changed files</summary> ➕ `math/factorial_recursion.c` (+28 -0) 📝 `sorting/radix_sort.c` (+69 -71) </details> ### 📄 Description #### Description of Change Radix sort using C programming. <!-- 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]. --> - [ ] 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 - [ ] Relevant documentation/comments is changed or added - [ ] 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. - [ ] I acknowledge that all my contributions will be made under the project's license. Notes: Hey, I have raised a pull request. This is part of my coursework assignment. Kindly, look into it. Thank you --- <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:26:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1971