diff --git a/添加0222.完全二叉树的节点个数Go版本.md b/添加0222.完全二叉树的节点个数Go版本.md index 752ace88..6001e7b7 100644 --- a/添加0222.完全二叉树的节点个数Go版本.md +++ b/添加0222.完全二叉树的节点个数Go版本.md @@ -19,7 +19,7 @@ func countNodes(root *TreeNode) int { res++ } } - return res + return res } ```