Remove Nth Node From End of List
Subscribe to my channel --- / @codersbyyutish3249
Link to Ultimate Leetcode Challenge Playlist --- • Ultimate Leetcode Challenge
Also checkout my playlist on Coding Interview Problems --- • Coding Interview Problems for Beginners
-------------------------------------------------------------------------------------------------------------------
Problem Statement - 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]
Example 2:
Input: head = [1], n = 1
Output: []
Example 3:
Input: head = [1,2], n = 1
Output: [1]
Constraints:
The number of nodes in the list is sz.
sz = [1, 30]
Node.val = [0, 100]
n = [1, sz]
Follow up: Could you do this in one pass?
Link to the problem --- https://leetcode.com/problems/remove-...
#timeenthusiast #ultimateleetcodechallenge #leetcodeinhindi #topinterviewquestions #leetcode