I was doing a problem on LeetCode the other day that had the following problem: Given a sorted linked list, delete all duplicates such that each element appear only once. An example input gave the following: Input: 1->1->2->3->3 Output: 1->2->3 Channeling Dave Chapelle like my last Linked List post, my mind went like… But thanks to […]