存在一个按升序排列的链表,给你这个链表的头节点 head ,请你删除所有重复的元素,使每个元素 只出现一次 。
返回同样按升序排列的结果链表。
示例 1:
image输入:head = [1,1,2]
输出:[1,2]
示例 2:
image输入:head = [1,1,2,3,3]
输出:[1,2,3]
python3解法
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def deleteDuplicates(self, head: ListNode) -> ListNode:
curNode = head
while curNode.next :
if curNode.val == curNode.next.val:
curNode.next = curNode.next.next
else:
curNode = curNode.next
return head
网友评论