Remove Nth Node From End
Medium
Linked Lists
Linked List
Two Pointers
Remove the nth node from end of list.
Constraints
1 ≤ n ≤ sz
Examples
Example 1:
Input: 1 2 3 4 5
2
Output: 1 2 3 5
Example 2:
Input: 1
1
Output:
Tests:
Runtime:
Memory:
Test
Input:
Expected:
Got:
Click Run Code to test against sample cases, or Submit to test against all cases.
▲ Console