Add Two NumbersLinked ListsAdd Two NumbersProblem 🤔 You have two numbers represented by a linked list, where each node contains a single…Omer GoldbergJanuary 19, 2021 13 min
Delete Kth to LastLinked ListsDelete Kth to Last NodeProblem 🤔 Implement an algorithm to find the kth to last element of a singly linked list. Example…Omer GoldbergJanuary 09, 2021 10 min
Loop DetectionLinked ListsLoop DetectionProblem 🤔 Given two (singly) linked lists, determine if the two lists intersect. Return the inter…Omer GoldbergJanuary 09, 2021 8 min
Delete Middle NodeLinked ListsDelete Middle NodeProblem 🤔 Implement an algorithm to delete a node in the middle (i.e., any node but the first and…Omer GoldbergJanuary 09, 2021 8 min
Partition a Linked ListLinked ListsLinked Lists PartitionProblem 🤔 Write code to partition to a linked list around a value x , such that all nodes less…Omer GoldbergJanuary 09, 2021 10 min
Linked ListsLinked ListsRemove DuplicatesProblem 🤔 Write code to remove duplicates from an unsorted linked list. Example 1 Input: 1 ->…Assaf ElovicJanuary 09, 2021 7 min