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 Node from a Singly Linked ListLinked ListsDelete Node from a Singly Linked ListHow TF Do You Delete a Node from a Singly Linked List This is a basic operation we need to be able…Omer GoldbergJanuary 11, 2021 8 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