Leetcode 0228. Summary Ranges

Posted on Sun 26 January 2025 in Leetcode • Tagged with trailing-pointer

Question Link : https://leetcode.com/problems/summary-ranges/

Difficulty: Easy

Premium: False

Question

You are given a sorted unique integer array nums. A range [a,b] is the set of all integers from a to b (inclusive). Return the smallest sorted list of ranges that cover all the numbers in the …


Continue reading

Leetcode 0019. Remove Nth Node From End of List

Posted on Mon 02 December 2024 in Leetcode • Tagged with linked-list, two-pointers, trailing-pointer

Question Link : https://leetcode.com/problems/remove-nth-node-from-end-of-list/

Difficulty: Medium

Premium: False

Question

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 …


Continue reading