Question: 34
(Choose 1 answer)
"Which of the following describes the correct approach for removing duplicates from a sorted linked list?"
A. Compare consecutive nodes and remove the duplicated node.
B. Sort the list again (Incorrect, but a valid distractor).
C. Set the next pointer of all nodes to nullptr.
D. Insert new nodes at the beginning of the list.