[PR #475] [MERGED] Add leetcode String to Integer (atoi) (8.c) and Integer to Roman (12.c) #878

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/475
Author: @Paul-Fugmann
Created: 10/26/2019
Status: Merged
Merged: 10/28/2019
Merged by: @danghai

Base: masterHead: master


📝 Commits (3)

  • cd679fd Add leetcode String to Integer (atoi) (8.c) and Integer to Roman (12.c)
  • 9c346de Merge branch 'master' into master
  • f5000f2 Merge branch 'master' into master

📊 Changes

3 files changed (+226 additions, -0 deletions)

View changed files

📝 leetcode/README.md (+2 -0)
leetcode/src/12.c (+164 -0)
leetcode/src/8.c (+60 -0)

📄 Description

Leetcode Solution:
Problem 8: String to Integer (atoi)
Problem 12: Integer to Roman
#249


🔄 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/475 **Author:** [@Paul-Fugmann](https://github.com/Paul-Fugmann) **Created:** 10/26/2019 **Status:** ✅ Merged **Merged:** 10/28/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`cd679fd`](https://github.com/TheAlgorithms/C/commit/cd679fd4613d8fb3c9745bdd666520ba7413b276) Add leetcode String to Integer (atoi) (8.c) and Integer to Roman (12.c) - [`9c346de`](https://github.com/TheAlgorithms/C/commit/9c346de3a3352bf9d11062e5c17c2069239fd6cb) Merge branch 'master' into master - [`f5000f2`](https://github.com/TheAlgorithms/C/commit/f5000f2f96274976e1b916d9200b14e620be702b) Merge branch 'master' into master ### 📊 Changes **3 files changed** (+226 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `leetcode/README.md` (+2 -0) ➕ `leetcode/src/12.c` (+164 -0) ➕ `leetcode/src/8.c` (+60 -0) </details> ### 📄 Description Leetcode Solution: Problem 8: String to Integer (atoi) Problem 12: Integer to Roman #249 --- <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:15:55 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#878