Remove Nth Node From End

00:00
MediumLinked ListTwo PointersFast & Slow
AmazonMicrosoft

Remove the nth node from the end of a linked list. Return the head of the modified list.

Examples

Input → 1
Output → 2→3→4→5, n=2 → 1→2→3→5
Input → [1], n=1
Output → []
Input → 1
Output → 2, n=1 → [1]