Medium
Given the head of a sorted linked list, delete all nodes that have duplicate values, leaving only values that appear exactly once. Return the sorted list.
head
Input: head = [1,2,3,3,4,4,5] Output: [1,2,5]
Input: head = [1,1,1,2,3] Output: [2,3]