Skip to content

Commit fed218d

Browse files
authored
Merge branch 'doocs:main' into main
2 parents 158c613 + d469b75 commit fed218d

File tree

290 files changed

+9731
-895
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+9731
-895
lines changed

solution/0000-0099/0017.Letter Combinations of a Phone Number/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tags:
2222

2323
<p>给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。</p>
2424

25-
<p><img src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0017.Letter%20Combinations%20of%20a%20Phone%20Number/images/200px-telephone-keypad2svg.png" style="width: 200px;" /></p>
25+
<p><img src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0017.Letter%20Combinations%20of%20a%20Phone%20Number/images/1752723054-mfIHZs-image.png" style="width: 200px;" /></p>
2626

2727
<p>&nbsp;</p>
2828

304 KB
Loading
358 KB
Loading

solution/0000-0099/0020.Valid Parentheses/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ tags:
6161
<p><span class="example-io"><b>输出:</b>true</span></p>
6262
</div>
6363

64+
<p><strong class="example">示例 5:</strong></p>
65+
66+
<div class="example-block">
67+
<p><span class="example-io"><b>输入:</b>s = "([)]"</span></p>
68+
69+
<p><span class="example-io"><b>输出:</b>false</span></p>
70+
</div>
71+
6472
<p>&nbsp;</p>
6573

6674
<p><strong>提示:</strong></p>

solution/0000-0099/0020.Valid Parentheses/README_EN.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@ tags:
6060
<p><strong>Output:</strong> <span class="example-io">true</span></p>
6161
</div>
6262

63+
<p><strong class="example">Example 5:</strong></p>
64+
65+
<div class="example-block">
66+
<p><strong>Input:</strong> <span class="example-io">s = &quot;([)]&quot;</span></p>
67+
68+
<p><strong>Output:</strong> <span class="example-io">false</span></p>
69+
</div>
70+
6371
<p>&nbsp;</p>
6472
<p><strong>Constraints:</strong></p>
6573

solution/0000-0099/0098.Validate Binary Search Tree/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ tags:
2424
<p><strong>有效</strong> 二叉搜索树定义如下:</p>
2525

2626
<ul>
27-
<li>节点的左<span data-keyword="subtree">子树</span>只包含<strong> 小于 </strong>当前节点的数。</li>
28-
<li>节点的右子树只包含 <strong>大于</strong> 当前节点的数。</li>
27+
<li>节点的左<span data-keyword="subtree">子树</span>只包含<strong>&nbsp;严格小于 </strong>当前节点的数。</li>
28+
<li>节点的右子树只包含 <strong>严格大于</strong> 当前节点的数。</li>
2929
<li>所有左子树和右子树自身必须也是二叉搜索树。</li>
3030
</ul>
3131

solution/0000-0099/0098.Validate Binary Search Tree/README_EN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ tags:
2424
<p>A <strong>valid BST</strong> is defined as follows:</p>
2525

2626
<ul>
27-
<li>The left <span data-keyword="subtree">subtree</span> of a node contains only nodes with keys <strong>less than</strong> the node&#39;s key.</li>
28-
<li>The right subtree of a node contains only nodes with keys <strong>greater than</strong> the node&#39;s key.</li>
27+
<li>The left <span data-keyword="subtree">subtree</span> of a node contains only nodes with keys&nbsp;<strong>strictly less than</strong> the node&#39;s key.</li>
28+
<li>The right subtree of a node contains only nodes with keys <strong>strictly greater than</strong> the node&#39;s key.</li>
2929
<li>Both the left and right subtrees must also be binary search trees.</li>
3030
</ul>
3131

0 commit comments

Comments
 (0)