[PR #1023] [MERGED] feat: leetcode Delete the Middle Node of a Linked List solution (2095) #1572

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1023
Author: @Sindhuinti
Created: 10/9/2022
Status: Merged
Merged: 1/20/2023
Merged by: @Panquesito7

Base: masterHead: leetcode--2095


📝 Commits (8)

  • c37aa1e feat:leetcode Delete the Middle Node of a Linked List solution (2095)
  • b7a0420 Merge branch 'master' into leetcode--2095
  • 57d8c5b Merge branch 'master' into leetcode--2095
  • 94f5b24 Update README.md
  • 3c58d83 Update README.md
  • f17a579 Merge branch 'master' into leetcode--2095
  • 02692f9 Update DIRECTORY.md
  • aa911d2 Merge branch 'master' into leetcode--2095

📊 Changes

3 files changed (+40 additions, -1 deletions)

View changed files

📝 leetcode/DIRECTORY.md (+1 -0)
📝 leetcode/README.md (+1 -1)
leetcode/src/2095.c (+38 -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:
Leetcode problem Delete the Middle Node of a Linked List solution (2095)


🔄 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/1023 **Author:** [@Sindhuinti](https://github.com/Sindhuinti) **Created:** 10/9/2022 **Status:** ✅ Merged **Merged:** 1/20/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `leetcode--2095` --- ### 📝 Commits (8) - [`c37aa1e`](https://github.com/TheAlgorithms/C/commit/c37aa1e239ab7d7982544a1dc76f69f2462a0ff4) feat:leetcode Delete the Middle Node of a Linked List solution (2095) - [`b7a0420`](https://github.com/TheAlgorithms/C/commit/b7a042085b30a4a903499ecf234d0de0539f2250) Merge branch 'master' into leetcode--2095 - [`57d8c5b`](https://github.com/TheAlgorithms/C/commit/57d8c5b2857acb8ec3233cbb5cb9d1f3488ca8dd) Merge branch 'master' into leetcode--2095 - [`94f5b24`](https://github.com/TheAlgorithms/C/commit/94f5b24880fa76226c7e4b858e2f3be764e77742) Update README.md - [`3c58d83`](https://github.com/TheAlgorithms/C/commit/3c58d836d632112c4055450b571c13efae559f6d) Update README.md - [`f17a579`](https://github.com/TheAlgorithms/C/commit/f17a579d5d7140ae68aade74b3dc416a86310d6d) Merge branch 'master' into leetcode--2095 - [`02692f9`](https://github.com/TheAlgorithms/C/commit/02692f9366b2af770d41763189b14f1e5488b368) Update DIRECTORY.md - [`aa911d2`](https://github.com/TheAlgorithms/C/commit/aa911d23ff55170065d5b215b1af8d6d6f121144) Merge branch 'master' into leetcode--2095 ### 📊 Changes **3 files changed** (+40 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `leetcode/DIRECTORY.md` (+1 -0) 📝 `leetcode/README.md` (+1 -1) ➕ `leetcode/src/2095.c` (+38 -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]. --> - [ ✅ ] 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 - [ ✅ ] 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: <!-- Please add a one-line description for developers or pull request viewers --> Leetcode problem Delete the Middle Node of a Linked List solution (2095) --- <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:25 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1572