1. 程式人生 > >83. 刪除排序連結串列中的重複元素

83. 刪除排序連結串列中的重複元素

Problem

給定一個排序連結串列,刪除所有重複的元素,使得每個元素只出現一次。

示例 1:

輸入: 1->1->2
輸出: 1->2
示例 2:

輸入: 1->1->2->3->3
輸出: 1->2->3

too young 思路

每一個數字都和上一個數字進行比較,如果一樣的話就讓上一個數字直接指向下一個數字,但是我不知道語法。。

dalao思路-28ms

這次的思路是對的,用小本本記下來

新知識get:
In Python, every value is a reference, you can say a pointer, to an object. Objects cannot be values. Assignment always copies the value; two such pointers point to the same object.

# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def deleteDuplicates(self, head):
        cur = head
        while cur:
            while cur.next and cur.next.val == cur.val:
                cur.
next = cur.next.next cur = cur.next return head