Skip to content

Commit b1fc2c6

Browse files
author
zhangbk1
committed
update
1 parent b545ef1 commit b1fc2c6

File tree

91 files changed

+19750
-9208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+19750
-9208
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 力扣题库(完整版)
22

3-
> 最后更新日期: **2024.06.25**
3+
> 最后更新日期: **2024.06.26**
44
>
55
> 使用脚本前请务必仔细完整阅读本 `README.md` 文件
66

Diff for: leetcode-cn/origin-data.json

+2,822-2,801
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"data": {
3+
"question": {
4+
"questionId": "3505",
5+
"questionFrontendId": "3198",
6+
"categoryTitle": "Database",
7+
"boundTopicId": 2821350,
8+
"title": "Find Cities in Each State",
9+
"titleSlug": "find-cities-in-each-state",
10+
"content": null,
11+
"translatedTitle": null,
12+
"translatedContent": null,
13+
"isPaidOnly": true,
14+
"difficulty": "Easy",
15+
"likes": 0,
16+
"dislikes": 0,
17+
"isLiked": null,
18+
"similarQuestions": "[]",
19+
"contributors": [],
20+
"langToValidPlayground": null,
21+
"topicTags": [],
22+
"companyTagStats": null,
23+
"codeSnippets": null,
24+
"stats": "{\"totalAccepted\": \"2\", \"totalSubmission\": \"3\", \"totalAcceptedRaw\": 2, \"totalSubmissionRaw\": 3, \"acRate\": \"66.7%\"}",
25+
"hints": [],
26+
"solution": null,
27+
"status": null,
28+
"sampleTestCase": "{\"headers\":{\"cities\":[\"state\",\"city\"]},\"rows\":{\"cities\":[[\"California\",\"Los Angeles\"],[\"California\",\"San Francisco\"],[\"California\",\"San Diego\"],[\"Texas\",\"Houston\"],[\"Texas\",\"Austin\"],[\"Texas\",\"Dallas\"],[\"New York\",\"New York City\"],[\"New York\",\"Buffalo\"],[\"New York\",\"Rochester\"]]}}",
29+
"metaData": "{\"mysql\":[\"Create table if not exists cities( state varchar(100),city varchar(100))\"],\"mssql\":[\"Create table cities( state varchar(100),city varchar(100))\"],\"oraclesql\":[\"Create table cities( state varchar2(100),city varchar2(100))\"],\"database\":true,\"name\":\"find_cities\",\"postgresql\":[\"CREATE TABLE IF NOT EXISTS cities (\\n state VARCHAR(100),\\n city VARCHAR(100)\\n);\"],\"pythondata\":[\"cities = pd.DataFrame(columns=['state', 'city'])\"],\"database_schema\":{\"cities\":{\"state\":\"VARCHAR(100)\",\"city\":\"VARCHAR(100)\"}}}",
30+
"judgerAvailable": true,
31+
"judgeType": "large",
32+
"mysqlSchemas": [
33+
"Create table if not exists cities( state varchar(100),city varchar(100))",
34+
"Truncate table cities",
35+
"insert into cities (state, city) values ('California', 'Los Angeles')",
36+
"insert into cities (state, city) values ('California', 'San Francisco')",
37+
"insert into cities (state, city) values ('California', 'San Diego')",
38+
"insert into cities (state, city) values ('Texas', 'Houston')",
39+
"insert into cities (state, city) values ('Texas', 'Austin')",
40+
"insert into cities (state, city) values ('Texas', 'Dallas')",
41+
"insert into cities (state, city) values ('New York', 'New York City')",
42+
"insert into cities (state, city) values ('New York', 'Buffalo')",
43+
"insert into cities (state, city) values ('New York', 'Rochester')"
44+
],
45+
"enableRunCode": true,
46+
"envInfo": "{\"mysql\":[\"MySQL\",\"<p>\\u7248\\u672c\\uff1a<code>MySQL 8.0<\\/code><\\/p>\"],\"mssql\":[\"MS SQL Server\",\"<p>mssql server 2019.<\\/p>\"],\"oraclesql\":[\"Oracle\",\"<p>Oracle Sql 11.2.<\\/p>\"],\"pythondata\":[\"Pandas\",\"<p>Python 3.10 with Pandas 2.0.2 and NumPy 1.25.0<\\/p>\"],\"postgresql\":[\"PostgreSQL\",\"<p>PostgreSQL 16<\\/p>\"]}",
47+
"book": null,
48+
"isSubscribed": false,
49+
"isDailyQuestion": false,
50+
"dailyRecordStatus": null,
51+
"editorType": "CKEDITOR",
52+
"ugcQuestionId": null,
53+
"style": "LEETCODE",
54+
"exampleTestcases": "{\"headers\":{\"cities\":[\"state\",\"city\"]},\"rows\":{\"cities\":[[\"California\",\"Los Angeles\"],[\"California\",\"San Francisco\"],[\"California\",\"San Diego\"],[\"Texas\",\"Houston\"],[\"Texas\",\"Austin\"],[\"Texas\",\"Dallas\"],[\"New York\",\"New York City\"],[\"New York\",\"Buffalo\"],[\"New York\",\"Rochester\"]]}}",
55+
"__typename": "QuestionNode"
56+
}
57+
}
58+
}

0 commit comments

Comments
 (0)