Skip to content

Commit 47c0cb7

Browse files
committed
2025-01-31
1 parent 63e8cb0 commit 47c0cb7

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

getData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from "fs/promises";
22

3-
const year = new Date().getFullYear(), month = new Date().getMonth();
3+
const year = new Date().getFullYear(), month = new Date().getMonth() - 1;
44

55
fetch("https://leetcode.cn/graphql/", {
66
method: "post",

src/assets/2025.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,30 @@
349349
"method": "哈希/滑动窗口",
350350
"learn": "",
351351
"unknown": ""
352+
},
353+
{
354+
"date": "2025/1/30",
355+
"no": "350",
356+
"name": "两个数组的交集 II",
357+
"slug": "intersection-of-two-arrays-ii",
358+
"difficulty": "简单",
359+
"rating": null,
360+
"situation": "自己做出",
361+
"method": "哈希",
362+
"learn": "",
363+
"unknown": ""
364+
},
365+
{
366+
"date": "2025/1/31",
367+
"no": "541",
368+
"name": "反转字符串 II",
369+
"slug": "reverse-string-ii",
370+
"difficulty": "简单",
371+
"rating": null,
372+
"situation": "自己做出",
373+
"method": "模拟",
374+
"learn": "",
375+
"unknown": ""
352376
}
353377
]
354378
]

0 commit comments

Comments
 (0)