Reverse Linked ListReverse Linked ListsProblem 🤔 Reverse a linked list! Example 1 Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL…Omer GoldbergJanuary 20, 2021 11 min
Add Two NumbersAdd 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 ListDelete 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 LastDelete 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 DetectionLoop DetectionProblem 🤔 Given two (singly) linked lists, determine if the two lists intersect. Return the inter…Omer GoldbergJanuary 09, 2021 8 min
Delete Middle NodeDelete 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