Skip to content

Commit b03ce22

Browse files
authored
Update 99. 把二叉搜索树转换为累加树.md
1 parent 8676683 commit b03ce22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

99. 把二叉搜索树转换为累加树.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ class Solution:
1919
node.val = self.total
2020
dfs(node.left)
2121
22-
recur(root)
22+
dfs(root)
2323
return root
2424
```

0 commit comments

Comments
 (0)