return head;
}
public static void main(String args[]) {
Solution2_1 so = new Solution2_1();
ListNode head = so.construct(new int[]{});
so.print(so.deleteDup(head));
head = so.construct(new int[]{1, 2, 3, 3 ,3, 2, 1, 2});
so.print(so.deleteDup(head));
head = so.construct(new int[]{1});
so.print(so.deleteDup(head));