leetcode-83删除排序链表中的重复元素

发布时间:2024年01月15日

题目链接

83. 删除排序链表中的重复元素 - 力扣(LeetCode)

解题代码

# 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: Optional[ListNode]) -> Optional[ListNode]:
        current = head
        while current and current.next:
            if current.val == current.next.val:
                current.next = current.next.next
            else: current=current.next
        return head

文章来源:https://blog.csdn.net/weixin_53908842/article/details/135610277
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。