Partition a Linked ListLinked 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 ListsRemove DuplicatesProblem 🤔 Write code to remove duplicates from an unsorted linked list. Example 1 Input: 1 ->…Assaf ElovicJanuary 09, 2021 7 min
Remove Duplicates from Sorted ListRemove Duplicates from Sorted ListProblem 🤔 Write code to remove duplicates from a sorted linked list. Example 1 Input: 1 -> 2 ->…Assaf ElovicJanuary 09, 2021 7 min
Kth to LastReturn Kth to Last NodeProblem 🤔 Implement an algorithm to find the kth to last element of a singly linked list. Example…Omer GoldbergJanuary 09, 2021 17 min
Runners TechniqueRunners TechniqueWTF is the Runners Technique This is a really popular technique in solving linked list problems…Omer GoldbergJanuary 09, 2021 5 min