From f59621fdc5b0917f048767f64d449b6f4e7ea40b Mon Sep 17 00:00:00 2001 From: Galaxies2580 <82326525+Galaxies2580@users.noreply.github.com> Date: Mon, 15 Aug 2022 10:24:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A00222.=E5=AE=8C=E5=85=A8?= =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91=E7=9A=84=E8=8A=82=E7=82=B9=E4=B8=AA?= =?UTF-8?q?=E6=95=B0Go=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加0222.完全二叉树的节点个数Go版本 --- 添加0222.完全二叉树的节点个数Go版本.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } ```