Skip to content

Commit fade0fe

Browse files
committed
feat: add biweekly contest 164
1 parent 2ef8ae2 commit fade0fe

File tree

39 files changed

+1720
-8
lines changed

39 files changed

+1720
-8
lines changed

solution/0000-0099/0036.Valid Sudoku/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ tags:
4141
<p><strong>示例 1:</strong></p>
4242
<img src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0036.Valid%20Sudoku/images/250px-sudoku-by-l2g-20050714svg.png" style="height:250px; width:250px" />
4343
<pre>
44-
<strong>输入:</strong>board =
44+
<strong>输入:</strong>board =
4545
[["5","3",".",".","7",".",".",".","."]
4646
,["6",".",".","1","9","5",".",".","."]
4747
,[".","9","8",".",".",".",".","6","."]
@@ -57,7 +57,7 @@ tags:
5757
<p><strong>示例 2:</strong></p>
5858

5959
<pre>
60-
<strong>输入:</strong>board =
60+
<strong>输入:</strong>board =
6161
[["8","3",".",".","7",".",".",".","."]
6262
,["6",".",".","1","9","5",".",".","."]
6363
,[".","9","8",".",".",".",".","6","."]

solution/0000-0099/0036.Valid Sudoku/README_EN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tags:
3737
<p><strong class="example">Example 1:</strong></p>
3838
<img src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/0000-0099/0036.Valid%20Sudoku/images/250px-Sudoku-by-L2G-20050714.svg.png" style="height:250px; width:250px" />
3939
<pre>
40-
<strong>Input:</strong> board =
40+
<strong>Input:</strong> board =
4141
[[&quot;5&quot;,&quot;3&quot;,&quot;.&quot;,&quot;.&quot;,&quot;7&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;]
4242
,[&quot;6&quot;,&quot;.&quot;,&quot;.&quot;,&quot;1&quot;,&quot;9&quot;,&quot;5&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;]
4343
,[&quot;.&quot;,&quot;9&quot;,&quot;8&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;,&quot;6&quot;,&quot;.&quot;]
@@ -53,7 +53,7 @@ tags:
5353
<p><strong class="example">Example 2:</strong></p>
5454

5555
<pre>
56-
<strong>Input:</strong> board =
56+
<strong>Input:</strong> board =
5757
[[&quot;8&quot;,&quot;3&quot;,&quot;.&quot;,&quot;.&quot;,&quot;7&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;]
5858
,[&quot;6&quot;,&quot;.&quot;,&quot;.&quot;,&quot;1&quot;,&quot;9&quot;,&quot;5&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;]
5959
,[&quot;.&quot;,&quot;9&quot;,&quot;8&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;,&quot;.&quot;,&quot;6&quot;,&quot;.&quot;]

solution/3000-3099/3019.Number of Changing Keys/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tags:
3131
<pre>
3232
<strong>输入:</strong>s = "aAbBcC"
3333
<strong>输出:</strong>2
34-
<strong>解释:</strong>
34+
<strong>解释:</strong>
3535
从 s[0] = 'a' 到 s[1] = 'A',不存在按键变更,因为不计入 caps lock 或 shift 。
3636
从 s[1] = 'A' 到 s[2] = 'b',按键变更。
3737
从 s[2] = 'b' 到 s[3] = 'B',不存在按键变更,因为不计入 caps lock 或 shift 。

solution/3000-3099/3019.Number of Changing Keys/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tags:
3030
<pre>
3131
<strong>Input:</strong> s = &quot;aAbBcC&quot;
3232
<strong>Output:</strong> 2
33-
<strong>Explanation:</strong>
33+
<strong>Explanation:</strong>
3434
From s[0] = &#39;a&#39; to s[1] = &#39;A&#39;, there is no change of key as caps lock or shift is not counted.
3535
From s[1] = &#39;A&#39; to s[2] = &#39;b&#39;, there is a change of key.
3636
From s[2] = &#39;b&#39; to s[3] = &#39;B&#39;, there is no change of key as caps lock or shift is not counted.

solution/3000-3099/3020.Find the Maximum Number of Elements in Subset/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tags:
4444
<pre>
4545
<strong>Input:</strong> nums = [1,3,2,4]
4646
<strong>Output:</strong> 1
47-
<strong>Explanation:</strong> We can select the subset {1}, which can be placed in the array as [1] which follows the pattern. Hence the answer is 1. Note that we could have also selected the subsets {2}, {3}, or {4}, there may be multiple subsets which provide the same answer.
47+
<strong>Explanation:</strong> We can select the subset {1}, which can be placed in the array as [1] which follows the pattern. Hence the answer is 1. Note that we could have also selected the subsets {2}, {3}, or {4}, there may be multiple subsets which provide the same answer.
4848
</pre>
4949

5050
<p>&nbsp;</p>

solution/3600-3699/3658.GCD of Odd and Even Sums/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
comments: true
33
difficulty: 简单
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3658.GCD%20of%20Odd%20and%20Even%20Sums/README.md
5+
rating: 1220
6+
source: 第 464 场周赛 Q1
57
---
68

79
<!-- problem:start -->

solution/3600-3699/3658.GCD of Odd and Even Sums/README_EN.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
comments: true
33
difficulty: Easy
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3658.GCD%20of%20Odd%20and%20Even%20Sums/README_EN.md
5+
rating: 1220
6+
source: Weekly Contest 464 Q1
57
---
68

79
<!-- problem:start -->

solution/3600-3699/3659.Partition Array Into K-Distinct Groups/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
comments: true
33
difficulty: 中等
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3659.Partition%20Array%20Into%20K-Distinct%20Groups/README.md
5+
rating: 1439
6+
source: 第 464 场周赛 Q2
57
---
68

79
<!-- problem:start -->

solution/3600-3699/3659.Partition Array Into K-Distinct Groups/README_EN.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
comments: true
33
difficulty: Medium
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3659.Partition%20Array%20Into%20K-Distinct%20Groups/README_EN.md
5+
rating: 1439
6+
source: Weekly Contest 464 Q2
57
---
68

79
<!-- problem:start -->

solution/3600-3699/3660.Jump Game IX/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
comments: true
33
difficulty: 中等
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3660.Jump%20Game%20IX/README.md
5+
rating: 2187
6+
source: 第 464 场周赛 Q3
57
---
68

79
<!-- problem:start -->

0 commit comments

Comments
 (0)