[PR #1104] [MERGED] feat: added roman_numerals_to_decimal.c #1668

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1104
Author: @Focusucof
Created: 10/25/2022
Status: Merged
Merged: 12/1/2022
Merged by: @Panquesito7

Base: masterHead: roman_numerals_to_decimal


📝 Commits (6)

  • 6a7ec24 feat: added roman_numerals_to_decimal.c
  • 1cb33be added newline at end of file
  • ca82c3f updating DIRECTORY.md
  • 43108e3 Update conversions/roman_numerals_to_decimal.c
  • 4db5a1d Update conversions/roman_numerals_to_decimal.c
  • 3d4a6ab Merge branch 'master' into roman_numerals_to_decimal

📊 Changes

1 file changed (+121 additions, -0 deletions)

View changed files

conversions/roman_numerals_to_decimal.c (+121 -0)

📄 Description

Description of Change

Added roman_numerals_to_decimal.c under conversions/roman_numerals_to_decimal.c.

References

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:

Added a file displaying the conversion of a roman numeral string to a decimal integer.


🔄 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/1104 **Author:** [@Focusucof](https://github.com/Focusucof) **Created:** 10/25/2022 **Status:** ✅ Merged **Merged:** 12/1/2022 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `roman_numerals_to_decimal` --- ### 📝 Commits (6) - [`6a7ec24`](https://github.com/TheAlgorithms/C/commit/6a7ec24c40287a2ab10ceb821ab0d3baf6efab64) feat: added roman_numerals_to_decimal.c - [`1cb33be`](https://github.com/TheAlgorithms/C/commit/1cb33be2e088ede1361a08499cf4ae6d788d851a) added newline at end of file - [`ca82c3f`](https://github.com/TheAlgorithms/C/commit/ca82c3fed42985166f5638f4074a0560bd75767f) updating DIRECTORY.md - [`43108e3`](https://github.com/TheAlgorithms/C/commit/43108e39c4fc25e3edc2c8fe4ae49542eac9edad) Update conversions/roman_numerals_to_decimal.c - [`4db5a1d`](https://github.com/TheAlgorithms/C/commit/4db5a1db108307059096b38ced76314a2ab3449c) Update conversions/roman_numerals_to_decimal.c - [`3d4a6ab`](https://github.com/TheAlgorithms/C/commit/3d4a6ab7ce9164821f24ee0b9af4891f256e483b) Merge branch 'master' into roman_numerals_to_decimal ### 📊 Changes **1 file changed** (+121 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `conversions/roman_numerals_to_decimal.c` (+121 -0) </details> ### 📄 Description #### Description of Change Added roman_numerals_to_decimal.c under conversions/roman_numerals_to_decimal.c. <!-- 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] 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) - [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: <!-- Please add a one-line description for developers or pull request viewers --> Added a file displaying the conversion of a roman numeral string to a decimal integer. --- <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:23:23 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1668