19. Remove Nth Node From End of ListMedium
Given the
head
of a linked list, remove then
th
node from the end of the list and return its head.
- Problem
- Solutions
Given the
head
of a linked list, remove then
th
node from the end of the list and return its head.