...

/

Solution: Remove nth Node from End of List

Solution: Remove nth Node from End of List

Let's solve the Remove Nth Node from End of List problem using the Two Pointers pattern.

Statement

Given the head of a singly linked list and an integer n, remove the nth node from the end of the list and return the head of the modified list.

Constraints:

  • The number of nodes in the list is kk.

  • 1≤1 \leq kk ≤103\leq 10^3

  • −103≤−10^3 \leq ...