leetcode——237. 删除链表中的节点

别人的想法

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

class Solution:
    def deleteNode(self, node):
        """
        :type node: ListNode
        :rtype: void Do not return anything, modify node in-place instead.
        """
        node.val=node.next.val
        node.next=node.next.next
执行用时 :72 ms, 在所有 python3 提交中击败了22.31%的用户
内存消耗 :14.1 MB, 在所有 python3 提交中击败了5.05%的用户
 
 
                                                                         ——2019.10.24

猜你喜欢

转载自www.cnblogs.com/taoyuxin/p/11734617.html