Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 507d9e0

Browse files
authored
更新0110.平衡二叉树中的上次修改的注释
1 parent d6cd5e0 commit 507d9e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/0110.平衡二叉树.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ class Solution:
611611
if node:
612612
stack.append(node) #
613613
stack.append(None)
614-
# 采用数组进行迭代,先将右子树加入,保证左节点能够先出栈
614+
# 采用数组进行迭代,先将右节点加入,保证左节点能够先出栈
615615
if node.right: #
616616
stack.append(node.right)
617617
if node.left: #

0 commit comments

Comments
 (0)