Skip to content

Commit 17fff6c

Browse files
committed
chore: update lc problems
1 parent 68ab63d commit 17fff6c

File tree

25 files changed

+38
-24
lines changed

25 files changed

+38
-24
lines changed

solution/0000-0099/0023.Merge k Sorted Lists/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tags:
3535
1->3->4,
3636
2->6
3737
]
38-
merging them into one sorted list:
38+
merging them into one sorted linked list:
3939
1->1->2->3->4->4->5->6
4040
</pre>
4141

solution/0200-0299/0282.Expression Add Operators/README_EN.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ tags:
2222

2323
<p>Note that operands in the returned expressions <strong>should not</strong> contain leading zeros.</p>
2424

25+
<p><strong>Note</strong> that a number can contain multiple digits.</p>
26+
2527
<p>&nbsp;</p>
2628
<p><strong class="example">Example 1:</strong></p>
2729

solution/0400-0499/0405.Convert a Number to Hexadecimal/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/0400-0499/0405.Co
55
tags:
66
- 位运算
77
- 数学
8+
- 字符串
89
---
910

1011
<!-- problem:start -->

solution/0400-0499/0405.Convert a Number to Hexadecimal/README_EN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/0400-0499/0405.Co
55
tags:
66
- Bit Manipulation
77
- Math
8+
- String
89
---
910

1011
<!-- problem:start -->

solution/0500-0599/0504.Base 7/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ difficulty: 简单
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/0500-0599/0504.Base%207/README.md
55
tags:
66
- 数学
7+
- 字符串
78
---
89

910
<!-- problem:start -->

solution/0500-0599/0504.Base 7/README_EN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ difficulty: Easy
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/0500-0599/0504.Base%207/README_EN.md
55
tags:
66
- Math
7+
- String
78
---
89

910
<!-- problem:start -->

solution/0800-0899/0883.Projection Area of 3D Shapes/README.md

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

2222
<p>在<meta charset="UTF-8" />&nbsp;<code>n x n</code>&nbsp;的网格<meta charset="UTF-8" />&nbsp;<code>grid</code>&nbsp;中,我们放置了一些与 x,y,z 三轴对齐的<meta charset="UTF-8" />&nbsp;<code>1 x 1 x 1</code>&nbsp;立方体。</p>
2323

24-
<p>每个值&nbsp;<code>v = grid[i][j]</code>&nbsp;表示 <code>v</code>&nbsp;个正方体叠放在单元格&nbsp;<code>(i, j)</code>&nbsp;上。</p>
24+
<p>每个值&nbsp;<code>v = grid[i][j]</code>&nbsp;表示有一列&nbsp;<code>v</code>&nbsp;个正方体叠放在格子&nbsp;<code>(i, j)</code>&nbsp;上。</p>
2525

2626
<p>现在,我们查看这些立方体在 <code>xy</code>&nbsp;、<code>yz</code>&nbsp;和 <code>zx</code>&nbsp;平面上的<em>投影</em>。</p>
2727

solution/0900-0999/0975.Odd Even Jump/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tags:
77
- 数组
88
- 动态规划
99
- 有序集合
10+
- 排序
1011
- 单调栈
1112
---
1213

solution/0900-0999/0975.Odd Even Jump/README_EN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tags:
77
- Array
88
- Dynamic Programming
99
- Ordered Set
10+
- Sorting
1011
- Monotonic Stack
1112
---
1213

solution/1300-1399/1353.Maximum Number of Events That Can Be Attended/README_EN.md

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

2424
<p>You are given an array of <code>events</code> where <code>events[i] = [startDay<sub>i</sub>, endDay<sub>i</sub>]</code>. Every event <code>i</code> starts at <code>startDay<sub>i</sub></code><sub> </sub>and ends at <code>endDay<sub>i</sub></code>.</p>
2525

26-
<p>You can attend an event <code>i</code> at any day <code>d</code> where <code>startTime<sub>i</sub> &lt;= d &lt;= endTime<sub>i</sub></code>. You can only attend one event at any time <code>d</code>.</p>
26+
<p>You can attend an event <code>i</code> at any day <code>d</code> where <code>startDay<sub>i</sub> &lt;= d &lt;= endDay<sub>i</sub></code>. You can only attend one event at any time <code>d</code>.</p>
2727

2828
<p>Return <em>the maximum number of events you can attend</em>.</p>
2929

0 commit comments

Comments
 (0)