Problem Description
Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Return the linked list sorted as well.
Key Insights
- The linked list is sorted, which allows for an efficient traversal.
- We need to identify duplicates by comparing adjacent nodes.
- A dummy node can help simplify edge cases, such as when the head itself is a duplicate.
Space and Time Complexity
Time Complexity: O(n) - We traverse the list once. Space Complexity: O(1) - We use a constant amount of extra space.
Solution
To solve the problem, we will use a two-pointer approach with a dummy node. The dummy node will point to the head of the new list we are constructing. We will traverse the original linked list while checking for duplicates. If a node is a duplicate, we skip over all nodes with that value. If it's unique, we add it to the new list. This approach ensures that we only keep nodes with distinct values.