Skip to content

Commit 14bf087

Browse files
committed
增加注释
1 parent 952d623 commit 14bf087

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Linked_list/leetcode_707.py

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ def __init__(self, val, next_node=None):
3535

3636

3737
class NodeList:
38+
"""
39+
带头结点 哨兵头
40+
"""
3841

3942
def __init__(self):
4043
self.size = 0

0 commit comments

Comments
 (0)