LeetCode 206. Reverse Linked List
Description https://leetcode.com/problems/reverse-linked-list/ Given the head of a singly linked list, reverse the list, and return the reversed list. Example 1: Input: head =…
Be a Good Techer and Tech for Good. www.goodtecher.com
Description https://leetcode.com/problems/reverse-linked-list/ Given the head of a singly linked list, reverse the list, and return the reversed list. Example 1: Input: head =…
Description https://leetcode.com/problems/design-linked-list/ Design your implementation of the linked list. You can choose to use the singly linked list or the doubly…
Description Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked…
Description A linked list is given such that each node contains an additional random pointer which could point to any…
Description Merge two sorted linked lists and return it as a sorted list. The list should be made by splicing together the…
Description https://leetcode.com/problems/add-two-numbers/ You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of…