Open fockspaces opened 1 year ago
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* removeNthFromEnd(ListNode* head, int n) {
ListNode *slow = head, *fast = head;
while(n--) fast = fast->next;
if(!fast) return head->next;
while(fast && fast->next)
{fast = fast->next; slow = slow->next;}
slow->next = slow->next ? slow->next->next : NULL;
return head;
}
};
https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/