Remove Nth Node From End of List

Bog'langan ro'yxatning headi berilgan, ro'yxat oxiridan n-tugunni olib tashlang va headni qaytaring.

Example 1:

Remove Nth Node From End of List

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:

  • Ro'yxatdagi tugunlar soni sz.

  • 1 <= sz <= 30

  • 0 <= Node.val <= 100

  • 1 <= n <= sz

Follow up: Buni bir o'tishda amalga oshira olasizmi?

My Solution

© Leetcode link

Last updated

Was this helpful?