[PR #1043] [CLOSED] +C hacktoberfest #1593

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1043
Author: @marehead
Created: 10/14/2022
Status: Closed

Base: improve_contributingHead: master


📝 Commits (10+)

📊 Changes

8 files changed (+226 additions, -11 deletions)

View changed files

📝 CONTRIBUTING.md (+13 -10)
📝 DIRECTORY.md (+3 -1)
📝 data_structures/array/carray.c (+1 -0)
📝 leetcode/README.md (+2 -0)
leetcode/src/118.c (+26 -0)
leetcode/src/2130.c (+30 -0)
misc/fibonacci_formula.c (+59 -0)
misc/run_length_encoding.c (+92 -0)

📄 Description

Description of Change

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:


🔄 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/1043 **Author:** [@marehead](https://github.com/marehead) **Created:** 10/14/2022 **Status:** ❌ Closed **Base:** `improve_contributing` ← **Head:** `master` --- ### 📝 Commits (10+) - [`7e6276b`](https://github.com/TheAlgorithms/C/commit/7e6276b730679b7e8c89d2d748b1ebce7e4a21b5) Return success status (#957) - [`6121ab5`](https://github.com/TheAlgorithms/C/commit/6121ab5c20204cbbf14ee2b5d129b239168b0a3b) Create fibonacci_formula.c (#961) - [`52d3b3e`](https://github.com/TheAlgorithms/C/commit/52d3b3ee4da8cedaa87f8e45083d995ad8a8aa81) docs: improve the contributing guidelines (#966) - [`82ca460`](https://github.com/TheAlgorithms/C/commit/82ca460a9cc6c450e2cbdbfbef07d2d609d4ab96) feat: add LeetCode problem 118 (#996) - [`a8b42d0`](https://github.com/TheAlgorithms/C/commit/a8b42d0bb8f6a96af412d0bb3735ff6b15e92477) feat: leetcode Maximum Twin Sum of a Linked List solution (2130) (#988) - [`f8e43ac`](https://github.com/TheAlgorithms/C/commit/f8e43ac88f90f1b011b3ec3c15d3af0c5a20325e) Add run length encoding - [`597dc19`](https://github.com/TheAlgorithms/C/commit/597dc1972b6e8562dbb01e9caf1162de89f89964) Apply suggestions from code review - [`45f09db`](https://github.com/TheAlgorithms/C/commit/45f09db995676b3fd77c1b776f28464f8ef23004) updating DIRECTORY.md - [`35f6431`](https://github.com/TheAlgorithms/C/commit/35f6431f4790c4478e7ea2439f32938fee507b09) Add algoritm description - [`bd1b0eb`](https://github.com/TheAlgorithms/C/commit/bd1b0ebcb9ee5fa4f75303f19e6aafda2cb7d6db) Add include descriptions ### 📊 Changes **8 files changed** (+226 additions, -11 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+13 -10) 📝 `DIRECTORY.md` (+3 -1) 📝 `data_structures/array/carray.c` (+1 -0) 📝 `leetcode/README.md` (+2 -0) ➕ `leetcode/src/118.c` (+26 -0) ➕ `leetcode/src/2130.c` (+30 -0) ➕ `misc/fibonacci_formula.c` (+59 -0) ➕ `misc/run_length_encoding.c` (+92 -0) </details> ### 📄 Description # Description of Change <!-- 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 --> --- <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:22:34 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1593