Skip to content

Commit 7f8adac

Browse files
authored
feat: update lc problems (#3265)
1 parent 2c92f25 commit 7f8adac

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

solution/2900-2999/2970.Count the Number of Incremovable Subarrays I/README.md

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

3030
<p><b>注意</b>&nbsp;,剩余元素为空的数组也视为是递增的。</p>
3131

32-
<p><strong>子数组</strong> 指的是一个数组中一段连续的元素序列。</p>
32+
<p><strong>子数组</strong> 指的是一个数组中一段非空且连续的元素序列。</p>
3333

3434
<p>&nbsp;</p>
3535

solution/3200-3299/3215.Count Triplets with Even XOR Set Bits II/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3200-3299/3215.Co
1414

1515
<!-- description:start -->
1616

17-
<p>给定三个整数数组&nbsp;<code>a</code>,<code>b</code>&nbsp;&nbsp;<code>c</code>,返回组内元素按位&nbsp;<code>XOR</code>&nbsp;&nbsp;<strong>偶数</strong>&nbsp;个 设置位 的三元组&nbsp;<code>(a[i], b[j], c[k])</code>&nbsp;的数量。</p>
17+
<p>给定三个整数数组&nbsp;<code>a</code>,<code>b</code>&nbsp;&nbsp;<code>c</code>,返回组内元素按位&nbsp;<code>XOR</code>&nbsp;&nbsp;<strong>偶数</strong>&nbsp;<span data-keyword="set-bit">设置位</span> 的三元组&nbsp;<code>(a[i], b[j], c[k])</code>&nbsp;的数量。</p>
1818

1919
<p>&nbsp;</p>
2020

solution/CONTEST_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ comments: true
152152
- [3122. 使矩阵满足条件的最少操作次数](/solution/3100-3199/3122.Minimum%20Number%20of%20Operations%20to%20Satisfy%20Conditions/README.md)
153153
- [3123. 最短路径中的边](/solution/3100-3199/3123.Find%20Edges%20in%20Shortest%20Paths/README.md)
154154

155-
#### 第 393 场周赛(2024-04-14 10:30, 90 分钟) 参赛人数 4218
155+
#### 第 393 场周赛(2024-04-14 10:30, 90 分钟) 参赛人数 4219
156156

157157
- [3114. 替换字符可以得到的最晚时间](/solution/3100-3199/3114.Latest%20Time%20You%20Can%20Obtain%20After%20Replacing%20Characters/README.md)
158158
- [3115. 质数的最大距离](/solution/3100-3199/3115.Maximum%20Prime%20Difference/README.md)

solution/contest.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

solution/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ def get_contests(fetch_new=True) -> List:
359359
c = Contest(i, contest_type=t)
360360
if c.contest_title_slug in d:
361361
continue
362-
contest_data = c.get_data(retry=3)
362+
contest_data = c.get_data(retry=10)
363363
if not contest_data:
364364
cnt += 1
365365
if cnt > 2:

0 commit comments

Comments
 (0)