From c50085df84471905957bb5990fba5ed4825c5f9b Mon Sep 17 00:00:00 2001 From: Galaxies2580 <82326525+Galaxies2580@users.noreply.github.com> Date: Mon, 15 Aug 2022 10:25:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0559.n=E5=8F=89=E6=A0=91?= =?UTF-8?q?=E7=9A=84=E6=9C=80=E5=A4=A7=E6=B7=B1=E5=BA=A6Go=E7=89=88?= =?UTF-8?q?=E6=9C=AC.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加559.n叉树的最大深度Go版本.md --- 添加559.n叉树的最大深度Go版本.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/添加559.n叉树的最大深度Go版本.md b/添加559.n叉树的最大深度Go版本.md index 77ca332c..3172837d 100644 --- a/添加559.n叉树的最大深度Go版本.md +++ b/添加559.n叉树的最大深度Go版本.md @@ -16,7 +16,7 @@ func maxDepth(root *Node) int { } depth++ } - return depth + return depth } ```