Remove Nth Node from End of List
Try to solve the Remove Nth Node from End of List problem.
We'll cover the following...
Statement
Given the head
of a singly linked list, remove the node from the end of the list and return its head.
Constraints:
- The number of nodes in the list is
k
.