[PR #1222] [MERGED] feat: remove nth node from end of list (leetcode #19) #1815

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1222
Author: @mindaugl
Created: 2/23/2023
Status: Merged
Merged: 3/3/2023
Merged by: @Panquesito7

Base: masterHead: solution/remove-nth-node-from-end-of-list


📝 Commits (6)

  • 859219e feat: remove nth node from end of list (leetcode #19)
  • 719c365 Merge branch 'master' into solution/remove-nth-node-from-end-of-list
  • 0de31b6 fix: update the leetcode #19 solution to introduce node pointing to head
  • c98a93a Merge branch 'solution/remove-nth-node-from-end-of-list' of https://github.com/mindaugl/C into solution/remove-nth-node-from-end-of-list
  • 734a1cd Merge branch 'master' into solution/remove-nth-node-from-end-of-list
  • 6f4c025 Merge branch 'master' into solution/remove-nth-node-from-end-of-list

📊 Changes

2 files changed (+28 additions, -0 deletions)

View changed files

📝 leetcode/DIRECTORY.md (+1 -0)
leetcode/src/19.c (+27 -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/1222 **Author:** [@mindaugl](https://github.com/mindaugl) **Created:** 2/23/2023 **Status:** ✅ Merged **Merged:** 3/3/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `solution/remove-nth-node-from-end-of-list` --- ### 📝 Commits (6) - [`859219e`](https://github.com/TheAlgorithms/C/commit/859219ef2216a3e2282169545bd753d28b7b853f) feat: remove nth node from end of list (leetcode #19) - [`719c365`](https://github.com/TheAlgorithms/C/commit/719c3655a358ae9b4354dd69746aeec1e825cb93) Merge branch 'master' into solution/remove-nth-node-from-end-of-list - [`0de31b6`](https://github.com/TheAlgorithms/C/commit/0de31b6aeb840c506c41e334a595f5a1bef6a11d) fix: update the leetcode #19 solution to introduce node pointing to head - [`c98a93a`](https://github.com/TheAlgorithms/C/commit/c98a93ad6feed9e5d98295b452108391345b053c) Merge branch 'solution/remove-nth-node-from-end-of-list' of https://github.com/mindaugl/C into solution/remove-nth-node-from-end-of-list - [`734a1cd`](https://github.com/TheAlgorithms/C/commit/734a1cd4db6cd94b5608a51d28f9f2e72c32506a) Merge branch 'master' into solution/remove-nth-node-from-end-of-list - [`6f4c025`](https://github.com/TheAlgorithms/C/commit/6f4c025da7b271d22c4eab28e06acc57f93b4fd9) Merge branch 'master' into solution/remove-nth-node-from-end-of-list ### 📊 Changes **2 files changed** (+28 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `leetcode/DIRECTORY.md` (+1 -0) ➕ `leetcode/src/19.c` (+27 -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 --> --- <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:24: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#1815