删除有序链表中的重复元素(python) 重复的留下一个 def deleteDuplicates(self , head: ListNode) -> ListNode: # write code here #空链表 if head == None: return None #遍历指针 cur = head #指针当前和下一位不为空 while cur and cur.next: #如果当前与下一位相等则忽略下一位 if(cur.val ==...