Skip to content

Commit 003c5a9

Browse files
authored
docs: remove unnecessary labels from lcof problem: No.68 - || (doocs#719)
1 parent a19ccc8 commit 003c5a9

File tree

1 file changed

+2
-2
lines changed
  • lcof/面试题68 - II. 二叉树的最近公共祖先

1 file changed

+2
-2
lines changed

lcof/面试题68 - II. 二叉树的最近公共祖先/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
<pre><strong>输入:</strong> root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 1
2020
<strong>输出:</strong> 3
21-
<strong>解释: </strong>节点 <code>5 </code>和节点 <code>1 </code>的最近公共祖先是节点 <code>3。</code>
21+
<strong>解释: </strong>节点 5 和节点 1 的最近公共祖先是节点 3。
2222
</pre>
2323

2424
<p><strong>示例&nbsp;2:</strong></p>
2525

2626
<pre><strong>输入:</strong> root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 4
2727
<strong>输出:</strong> 5
28-
<strong>解释: </strong>节点 <code>5 </code>和节点 <code>4 </code>的最近公共祖先是节点 <code>5。</code>因为根据定义最近公共祖先节点可以为节点本身。
28+
<strong>解释: </strong>节点 5 和节点 4 的最近公共祖先是节点 5。因为根据定义最近公共祖先节点可以为节点本身。
2929
</pre>
3030

3131
<p>&nbsp;</p>

0 commit comments

Comments
 (0)