Skip to content

Commit aaa7e7e

Browse files
authoredAug 24, 2023
feat: add new lc problems (doocs#1495)
1 parent 6ff5f4c commit aaa7e7e

File tree

84 files changed

+1571
-351
lines changed

Some content is hidden

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

84 files changed

+1571
-351
lines changed
 

‎solution/0100-0199/0137.Single Number II/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<p>给你一个整数数组&nbsp;<code>nums</code> ,除某个元素仅出现 <strong>一次</strong> 外,其余每个元素都恰出现 <strong>三次 。</strong>请你找出并返回那个只出现了一次的元素。</p>
1010

11-
<p>你必须设计并实现线性时间复杂度的算法且不使用额外空间来解决此问题。</p>
11+
<p>你必须设计并实现线性时间复杂度的算法且使用常数级空间来解决此问题。</p>
1212

1313
<p>&nbsp;</p>
1414

‎solution/0100-0199/0139.Word Break/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<li><code>1 &lt;= s.length &lt;= 300</code></li>
4545
<li><code>1 &lt;= wordDict.length &lt;= 1000</code></li>
4646
<li><code>1 &lt;= wordDict[i].length &lt;= 20</code></li>
47-
<li><code>s</code> 和 <code>wordDict[i]</code> 仅有小写英文字母组成</li>
47+
<li><code>s</code> 和 <code>wordDict[i]</code> 仅由小写英文字母组成</li>
4848
<li><code>wordDict</code> 中的所有字符串 <strong>互不相同</strong></li>
4949
</ul>
5050

0 commit comments

Comments
 (0)