All Posts

Leetcode 725: Split Linked List in Parts

Given the head of a singly linked list and an integer k, split the linked list into k consecutive parts. The parts should have as equal size as possible, with no two parts differing by more than one element. Some parts may be null.

Leetcode 817: Linked List Components

You are given the head of a linked list containing unique integer values, and an array nums which is a subset of the linked list values. A connected component is defined as a sequence of consecutive values in the linked list that all appear in nums. Your task is to return the number of such connected components.

Leetcode 876: Middle of the Linked List

You are given the head of a singly linked list. Your task is to find and return the middle node of the list. If there are two middle nodes, return the second one.

Leetcode 1019: Next Greater Node In Linked List

You are given the head of a singly linked list. For each node in the list, find the value of the next node that has a strictly larger value than the current node. If no such node exists, return 0 for that node. Return the result as an array where the value at index i represents the next greater node for the i-th node.

Leetcode 1171: Remove Zero Sum Consecutive Nodes from Linked List

Given the head of a linked list, iteratively remove all consecutive subsequences of nodes whose sum is 0. Return the modified linked list after all such subsequences have been removed. You may return any valid result.

Leetcode 1367: Linked List in Binary Tree

You are given a binary tree and a linked list. Determine if there exists a downward path in the binary tree that matches all elements of the linked list starting from its head node. A downward path means starting from any node in the binary tree and following child nodes downwards.