Problem Statement
Given the head of a linked list, remove the nth node from the end of the list and return its head.
Examples
Example 1:
Input: head = [1,2,3,4,5], n = 2
Output: [1,2,3,5]
Explanation: The 2nd node from the end is the node with value...