Problem: Remove Nth Node From End of List
Given the head of a linked list, remove the nth node from the end of the list and return its head.
Example 1:
Input: head = [1,2,3,4,5], n = 2
Output: [1,2,3,5]
```class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
...
mackph.hashnode.dev1 min read