Skip to content

Commit cc34eee

Browse files
authored
docs: update description to lcof problem No.68 - | (#718)
1 parent 809bb5e commit cc34eee

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

lcof/面试题68 - I. 二叉搜索树的最近公共祖先/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 = [6,2,8,0,4,7,9,null,null,3,5], p = 2, q = 8
2020
<strong>输出:</strong> 6
21-
<strong>解释: </strong>节点 <code>2 </code>和节点 <code>8 </code>的最近公共祖先是 <code>6。</code>
21+
<strong>解释:</strong> 节点 2 和节点 8 的最近公共祖先是 6。
2222
</pre>
2323

2424
<p><strong>示例 2:</strong></p>
2525

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

3030
<p>&nbsp;</p>
3131

0 commit comments

Comments
 (0)