Skip to content

Commit 23c4b6e

Browse files
committed
feat: add new lcp problems
1 parent 4bbaff4 commit 23c4b6e

File tree

54 files changed

+1044
-464
lines changed

Some content is hidden

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

54 files changed

+1044
-464
lines changed

.github/workflows/contributors.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
if: github.repository == 'doocs/leetcode'
1111
steps:
12-
- uses: bubkoo/contributors-list@v1
13-
name: contributors-doocs-leetcode
12+
- uses: wow-actions/contributors-list@v1
13+
name: Update contributors
1414
with:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
svgPath: images/contributors.svg
1717
svgWidth: 890
18-
round: true
19-
includeBots: true
20-
commitMessage: 'chore: update contributors to @doocs/leetcode'
18+
commitMessage: "chore: update contributors to leetcode project @doocs"

lcp/LCP 02. 分式化简/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
<li>答案的<code>n, m</code>的取值都能被32位int整型存下(即不超过<code>2 ^ 31 - 1</code>)。</li>
4242
</ol>
4343

44-
4544
## 解法
4645

4746
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 03. 机器人大冒险/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
<li><code>obstacles[i]</code>不为原点或者终点</li>
4848
</ol>
4949

50-
5150
## 解法
5251

5352
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 04. 覆盖/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
<li><code>0 &lt;= b &lt;= n * m</code></li>
4444
</ol>
4545

46-
4746
## 解法
4847

4948
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 05. 发 LeetCoin/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
<li><code>operations[i][0] != 3 时,1 &lt;= operations[i][2]&nbsp;&lt;= 5000</code></li>
6969
</ol>
7070

71-
7271
## 解法
7372

7473
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 06. 拿硬币/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
<li><code>1 &lt;= coins[i] &lt;= 10</code></li>
3232
</ul>
3333

34-
3534
## 解法
3635

3736
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 07. 传递信息/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
<li><code>0 &lt;= relation[i][0],relation[i][1] &lt; n 且 relation[i][0] != relation[i][1]</code></li>
4444
</ul>
4545

46-
4746
## 解法
4847

4948
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 08. 剧情触发时间/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
<li><code>0 &lt;= requirements[i] &lt;= 100000</code></li>
5858
</ul>
5959

60-
6160
## 解法
6261

6362
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 09. 最小跳跃次数/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<li><code>1 &lt;= jump[i] &lt;= 10000</code></li>
2626
</ul>
2727

28-
2928
## 解法
3029

3130
<!-- 这里可写通用的实现逻辑 -->

lcp/LCP 10. 二叉树任务调度/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
<li><code>1 &lt;= 单节点执行时间 &lt;= 1000</code></li>
5252
</ul>
5353

54-
5554
## 解法
5655

5756
<!-- 这里可写通用的实现逻辑 -->

0 commit comments

Comments
 (0)