add: leetcode/237.py
This commit is contained in:
14
leetcode/237.py
Normal file
14
leetcode/237.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# Definition for singly-linked list.
|
||||
# class ListNode(object):
|
||||
# def __init__(self, x):
|
||||
# self.val = x
|
||||
# self.next = None
|
||||
|
||||
class Solution(object):
|
||||
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
|
||||
Reference in New Issue
Block a user