Easy
Given the head of a sorted linked list, delete all duplicates so that each value appears only once. Return the sorted list.
head
Input: head = [1,1,2] Output: [1,2]
Input: head = [1,1,2,3,3] Output: [1,2,3]