add: leetcode/237.py

This commit is contained in:
Gyubin-Han
2025-02-20 15:29:30 +09:00
parent dede0dca01
commit dac4da1dd6

14
leetcode/237.py Normal file
View 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