Skip to content

Commit e3c003b

Browse files
committed
style: format code and documents
1 parent cfe9665 commit e3c003b

File tree

29 files changed

+102
-66
lines changed

29 files changed

+102
-66
lines changed

lcci/16.10.Living People/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ function maxAliveYear(birth: number[], death: number[]): number {
116116
}
117117
return res;
118118
}
119-
120119
```
121120

122121
### **Rust**

lcci/16.10.Living People/README_EN.md

-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ function maxAliveYear(birth: number[], death: number[]): number {
111111
}
112112
return res;
113113
}
114-
115114
```
116115

117116
### **Rust**

lcp/LCP 34. 二叉树染色/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Solution:
6161
for j in range(k + 1):
6262
ans[0] = max(ans[0], l[i] + r[j])
6363
return ans
64-
64+
6565
return max(dfs(root))
6666
```
6767

solution/0200-0299/0241.Different Ways to Add Parentheses/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class Solution:
7777
else:
7878
ans.append(a * b)
7979
return ans
80-
80+
8181
return dfs(expression)
8282
```
8383

solution/0200-0299/0241.Different Ways to Add Parentheses/README_EN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Solution:
6767
else:
6868
ans.append(a * b)
6969
return ans
70-
70+
7171
return dfs(expression)
7272
```
7373

solution/0300-0399/0336.Palindrome Pairs/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
<strong>输出:</strong>[[0,1],[1,0]]
3333
</pre>
3434

35-
36-
3735
<p><strong>提示:</strong></p>
3836

3937
<ul>

solution/0500-0599/0540.Single Element in a Sorted Array/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ for (int i = 0; i < n - 1; i += 2) {
5858
return nums[n - 1];
5959
```
6060

61-
偶数下标:当 `nums[i] != nums[i + 1] && i % 2 == 0` 成立,结果便是 `nums[i]`
62-
奇数下标:当 `nums[i] != nums[i - 1] && i % 2 == 1` 成立,结果便是 `nums[i - 1]`
61+
偶数下标:当 `nums[i] != nums[i + 1] && i % 2 == 0` 成立,结果便是 `nums[i]`
62+
奇数下标:当 `nums[i] != nums[i - 1] && i % 2 == 1` 成立,结果便是 `nums[i - 1]`
6363

6464
于是二分模板就有了:
6565

solution/0500-0599/0554.Brick Wall/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
<strong>输出:</strong>3
2929
</pre>
3030

31-
32-
3331
<p><strong>提示:</strong></p>
3432

3533
<ul>

solution/0700-0799/0745.Prefix and Suffix Search/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ WordFilter wordFilter = new WordFilter(["apple"]);
3131
wordFilter.f("a", "e"); // 返回 0 ,因为下标为 0 的单词的 prefix = "a" 且 suffix = 'e" 。
3232
</pre>
3333

34-
35-
3634
<p><strong>提示:</strong></p>
3735

3836
<ul>

solution/0700-0799/0775.Global and Local Inversions/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242
<strong>解释:</strong>有 2 个全局倒置,和 1 个局部倒置。
4343
</pre>
4444

45-
46-
4745
<p><strong>提示:</strong></p>
4846

4947
<ul>

solution/0800-0899/0830.Positions of Large Groups/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@
4848
<strong>输出:</strong>[]
4949
</pre>
5050

51-
52-
5351
<p><strong>提示:</strong></p>
5452

5553
<ul>

solution/2100-2199/2140.Solving Questions With Brainpower/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class Solution {
9393
this.questions = questions;
9494
memo = new long[questions.length];
9595
Arrays.fill(memo, -1);
96-
return dfs(0);
96+
return dfs(0);
9797
}
9898

9999
private long dfs(int i) {
@@ -117,7 +117,7 @@ class Solution {
117117
public:
118118
long long mostPoints(vector<vector<int>>& questions) {
119119
vector<long long> memo(questions.size(), -1);
120-
return dfs(0, questions, memo);
120+
return dfs(0, questions, memo);
121121
}
122122

123123
long long dfs(int i, vector<vector<int>>& questions, vector<long long>& memo) {

solution/2100-2199/2140.Solving Questions With Brainpower/README_EN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class Solution {
8383
this.questions = questions;
8484
memo = new long[questions.length];
8585
Arrays.fill(memo, -1);
86-
return dfs(0);
86+
return dfs(0);
8787
}
8888

8989
private long dfs(int i) {
@@ -107,7 +107,7 @@ class Solution {
107107
public:
108108
long long mostPoints(vector<vector<int>>& questions) {
109109
vector<long long> memo(questions.size(), -1);
110-
return dfs(0, questions, memo);
110+
return dfs(0, questions, memo);
111111
}
112112

113113
long long dfs(int i, vector<vector<int>>& questions, vector<long long>& memo) {

solution/2300-2399/2320.Count Number of Ways to Place Houses/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,13 @@ func countHousePlacements(n int) int {
128128
```ts
129129
function countHousePlacements(n: number): number {
130130
const mod = BigInt(10 ** 9 + 7);
131-
let pre = 1n, count = 2n;
131+
let pre = 1n,
132+
count = 2n;
132133
for (let i = 2; i <= n; i++) {
133134
[count, pre] = [(count + pre) % mod, count];
134135
}
135136
return Number(count ** 2n % mod);
136-
};
137+
}
137138
```
138139

139140
### **...**

solution/2300-2399/2320.Count Number of Ways to Place Houses/README_EN.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,13 @@ func countHousePlacements(n int) int {
120120
```ts
121121
function countHousePlacements(n: number): number {
122122
const mod = BigInt(10 ** 9 + 7);
123-
let pre = 1n, count = 2n;
123+
let pre = 1n,
124+
count = 2n;
124125
for (let i = 2; i <= n; i++) {
125126
[count, pre] = [(count + pre) % mod, count];
126127
}
127128
return Number(count ** 2n % mod);
128-
};
129+
}
129130
```
130131

131132
### **...**

solution/2300-2399/2323.Find Minimum Time to Finish All Jobs II/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ It can be proven that 3 days is the minimum number of days needed.
4949
<li><code>1 &lt;= jobs[i], workers[i] &lt;= 10<sup>5</sup></code></li>
5050
</ul>
5151

52-
5352
## 解法
5453

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

solution/2300-2399/2323.Find Minimum Time to Finish All Jobs II/README_EN.md

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ It can be proven that 3 days is the minimum number of days needed.
4747
<li><code>1 &lt;= jobs[i], workers[i] &lt;= 10<sup>5</sup></code></li>
4848
</ul>
4949

50-
5150
## Solutions
5251

5352
<!-- tabs:start -->

solution/2300-2399/2325.Decode the Message/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ func decodeMessage(key string, message string) string {
156156
```ts
157157
function decodeMessage(key: string, message: string): string {
158158
let decodeMap = new Map();
159-
const m = key.length, n = 26;
159+
const m = key.length,
160+
n = 26;
160161
for (let i = 0, j = 0; i < m; i++) {
161162
let char = key.charAt(i);
162163
if (char != ' ' && !decodeMap.has(char)) {
@@ -169,7 +170,7 @@ function decodeMessage(key: string, message: string): string {
169170
ans.push(char == ' ' ? ' ' : decodeMap.get(char));
170171
}
171172
return ans.join('');
172-
};
173+
}
173174
```
174175

175176
### **...**

solution/2300-2399/2325.Decode the Message/README_EN.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ func decodeMessage(key string, message string) string {
142142
```ts
143143
function decodeMessage(key: string, message: string): string {
144144
let decodeMap = new Map();
145-
const m = key.length, n = 26;
145+
const m = key.length,
146+
n = 26;
146147
for (let i = 0, j = 0; i < m; i++) {
147148
let char = key.charAt(i);
148149
if (char != ' ' && !decodeMap.has(char)) {
@@ -155,7 +156,7 @@ function decodeMessage(key: string, message: string): string {
155156
ans.push(char == ' ' ? ' ' : decodeMap.get(char));
156157
}
157158
return ans.join('');
158-
};
159+
}
159160
```
160161

161162
### **...**

solution/2300-2399/2325.Decode the Message/Solution.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
function decodeMessage(key: string, message: string): string {
22
let decodeMap = new Map();
3-
const m = key.length, n = 26;
3+
const m = key.length,
4+
n = 26;
45
for (let i = 0, j = 0; i < m; i++) {
56
let char = key.charAt(i);
67
if (char != ' ' && !decodeMap.has(char)) {
@@ -13,4 +14,4 @@ function decodeMessage(key: string, message: string): string {
1314
ans.push(char == ' ' ? ' ' : decodeMap.get(char));
1415
}
1516
return ans.join('');
16-
};
17+
}

solution/2300-2399/2326.Spiral Matrix IV/README.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,17 @@ func spiralMatrix(m int, n int, head *ListNode) [][]int {
218218
* }
219219
*/
220220

221-
function spiralMatrix(m: number, n: number, head: ListNode | null): number[][] {
222-
const dirs = [[0, 1], [1, 0], [0, -1], [-1, 0]];
221+
function spiralMatrix(m: number, n: number, head: ListNode | null): number[][] {
222+
const dirs = [
223+
[0, 1],
224+
[1, 0],
225+
[0, -1],
226+
[-1, 0],
227+
];
223228
let ans = Array.from({ length: m }, v => new Array(n).fill(-1));
224-
let i = 0, j = 0, k = 0;
229+
let i = 0,
230+
j = 0,
231+
k = 0;
225232
while (head) {
226233
ans[i][j] = head.val;
227234
head = head.next;
@@ -234,7 +241,7 @@ func spiralMatrix(m int, n int, head *ListNode) [][]int {
234241
j = j + dirs[k][1];
235242
}
236243
return ans;
237-
};
244+
}
238245
```
239246

240247
### **...**

solution/2300-2399/2326.Spiral Matrix IV/README_EN.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,17 @@ func spiralMatrix(m int, n int, head *ListNode) [][]int {
210210
* }
211211
*/
212212

213-
function spiralMatrix(m: number, n: number, head: ListNode | null): number[][] {
214-
const dirs = [[0, 1], [1, 0], [0, -1], [-1, 0]];
213+
function spiralMatrix(m: number, n: number, head: ListNode | null): number[][] {
214+
const dirs = [
215+
[0, 1],
216+
[1, 0],
217+
[0, -1],
218+
[-1, 0],
219+
];
215220
let ans = Array.from({ length: m }, v => new Array(n).fill(-1));
216-
let i = 0, j = 0, k = 0;
221+
let i = 0,
222+
j = 0,
223+
k = 0;
217224
while (head) {
218225
ans[i][j] = head.val;
219226
head = head.next;
@@ -226,7 +233,7 @@ func spiralMatrix(m int, n int, head *ListNode) [][]int {
226233
j = j + dirs[k][1];
227234
}
228235
return ans;
229-
};
236+
}
230237
```
231238

232239
### **...**

solution/2300-2399/2326.Spiral Matrix IV/Solution.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,17 @@
1010
* }
1111
*/
1212

13-
function spiralMatrix(m: number, n: number, head: ListNode | null): number[][] {
14-
const dirs = [[0, 1], [1, 0], [0, -1], [-1, 0]];
13+
function spiralMatrix(m: number, n: number, head: ListNode | null): number[][] {
14+
const dirs = [
15+
[0, 1],
16+
[1, 0],
17+
[0, -1],
18+
[-1, 0],
19+
];
1520
let ans = Array.from({ length: m }, v => new Array(n).fill(-1));
16-
let i = 0, j = 0, k = 0;
21+
let i = 0,
22+
j = 0,
23+
k = 0;
1724
while (head) {
1825
ans[i][j] = head.val;
1926
head = head.next;
@@ -26,4 +33,4 @@
2633
j = j + dirs[k][1];
2734
}
2835
return ans;
29-
};
36+
}

solution/2300-2399/2327.Number of People Aware of a Secret/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ function peopleAwareOfSecret(n: number, delay: number, forget: number): number {
197197
}
198198
}
199199
return Number(pre % BigInt(10 ** 9 + 7));
200-
};
200+
}
201201
```
202202

203203
### **...**

solution/2300-2399/2327.Number of People Aware of a Secret/README_EN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function peopleAwareOfSecret(n: number, delay: number, forget: number): number {
185185
}
186186
}
187187
return Number(pre % BigInt(10 ** 9 + 7));
188-
};
188+
}
189189
```
190190

191191
### **...**

solution/2300-2399/2327.Number of People Aware of a Secret/Solution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ function peopleAwareOfSecret(n: number, delay: number, forget: number): number {
1818
}
1919
}
2020
return Number(pre % BigInt(10 ** 9 + 7));
21-
};
21+
}

solution/2300-2399/2328.Number of Increasing Paths in a Grid/README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,24 @@ func countPaths(grid [][]int) int {
196196
```ts
197197
function countPaths(grid: number[][]): number {
198198
const mod = BigInt(10 ** 9 + 7);
199-
const dirs = [[0, 1], [1, 0], [0, -1], [-1, 0]];
200-
const m = grid.length, n = grid[0].length;
199+
const dirs = [
200+
[0, 1],
201+
[1, 0],
202+
[0, -1],
203+
[-1, 0],
204+
];
205+
const m = grid.length,
206+
n = grid[0].length;
201207
const dp = Array.from({ length: m }, v => new Array(n).fill(-1n));
202208

203-
function dfs (x, y) {
209+
function dfs(x, y) {
204210
if (dp[x][y] != -1) return dp[x][y];
205211
let count = 1n;
206212
for (let [dx, dy] of dirs) {
207-
let i = x + dx, j = y + dy;
208-
if (i < 0 || i >= m || j < 0 || j >= n || grid[i][j] <= grid[x][y]) continue;
213+
let i = x + dx,
214+
j = y + dy;
215+
if (i < 0 || i >= m || j < 0 || j >= n || grid[i][j] <= grid[x][y])
216+
continue;
209217
count = (count + dfs(i, j)) % mod;
210218
}
211219
dp[x][y] = count;
@@ -219,7 +227,7 @@ function countPaths(grid: number[][]): number {
219227
}
220228
}
221229
return Number(sum);
222-
};
230+
}
223231
```
224232

225233
### **...**

0 commit comments

Comments
 (0)