mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-07 06:44:57 +08:00
Unify the comment style of python codes
This commit is contained in:
@ -40,7 +40,7 @@ def post_order(root: TreeNode | None) -> None:
|
||||
res.append(root.val)
|
||||
|
||||
|
||||
""" Driver Code """
|
||||
"""Driver Code"""
|
||||
if __name__ == "__main__":
|
||||
# 初始化二叉树
|
||||
# 这里借助了一个从数组直接生成二叉树的函数
|
||||
|
Reference in New Issue
Block a user