Several bug fixes.

This commit is contained in:
krahets
2023-09-20 01:53:44 +08:00
parent 53d91db10d
commit 8effa58a59
7 changed files with 6 additions and 9 deletions

View File

@@ -28,7 +28,7 @@
class Node:
"""类"""
def __init__(self, x: int):
self.val: int = x # 节点值
self.val: int = x # 节点值
self.next: Node | None = None # 指向下一节点的引用
def function() -> int: