Problem
Given the head of a linked list, remove the n<sup>th</sup> node from the end of the list and return its head.
List: [1] -> [2] -> [3] -> [4] -> [5]
Value of N: 2
Output: [1] -> [2] -> [3] -> [5]
Given Code
# Definition for singly-linked list....