mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
update
This commit is contained in:
parent
3adfcf4fee
commit
561e2f5094
@ -1,6 +1,6 @@
|
||||
# 力扣题库(完整版)
|
||||
|
||||
> 最后更新日期: **2022.07.19**
|
||||
> 最后更新日期: **2022.07.23**
|
||||
>
|
||||
> 使用脚本前请务必仔细完整阅读本 `README.md` 文件
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,54 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2484",
|
||||
"questionFrontendId": "2346",
|
||||
"categoryTitle": "Database",
|
||||
"boundTopicId": 1688887,
|
||||
"title": "Compute the Rank as a Percentage",
|
||||
"titleSlug": "compute-the-rank-as-a-percentage",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Easy",
|
||||
"likes": 0,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"contributors": [],
|
||||
"langToValidPlayground": null,
|
||||
"topicTags": [],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"22\", \"totalSubmission\": \"53\", \"totalAcceptedRaw\": 22, \"totalSubmissionRaw\": 53, \"acRate\": \"41.5%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Students\": [\"student_id\", \"department_id\", \"mark\"]}, \"rows\": {\"Students\": [[2, 2, 650], [8, 2, 650], [7, 1, 920], [1, 1, 610], [3, 1, 530]]}}",
|
||||
"metaData": "{\n \"mssql\": [\n \"Create table Students (student_id int, department_id int, mark int)\"\n ],\n \"oraclesql\": [\n \"Create table Students (student_id int, department_id int, mark int)\"\n ],\n \"database\": true,\n \"mysql\": [\n \"Create table If Not Exists Students (student_id int, department_id int, mark int)\"\n ]\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Students (student_id int, department_id int, mark int)",
|
||||
"Truncate table Students",
|
||||
"insert into Students (student_id, department_id, mark) values ('2', '2', '650')",
|
||||
"insert into Students (student_id, department_id, mark) values ('8', '2', '650')",
|
||||
"insert into Students (student_id, department_id, mark) values ('7', '1', '920')",
|
||||
"insert into Students (student_id, department_id, mark) values ('1', '1', '610')",
|
||||
"insert into Students (student_id, department_id, mark) values ('3', '1', '530')"
|
||||
],
|
||||
"enableRunCode": true,
|
||||
"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>\"]}",
|
||||
"book": null,
|
||||
"isSubscribed": false,
|
||||
"isDailyQuestion": false,
|
||||
"dailyRecordStatus": null,
|
||||
"editorType": "CKEDITOR",
|
||||
"ugcQuestionId": null,
|
||||
"style": "LEETCODE",
|
||||
"exampleTestcases": "{\"headers\": {\"Students\": [\"student_id\", \"department_id\", \"mark\"]}, \"rows\": {\"Students\": [[2, 2, 650], [8, 2, 650], [7, 1, 920], [1, 1, 610], [3, 1, 530]]}}",
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,51 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2484",
|
||||
"questionFrontendId": "2346",
|
||||
"boundTopicId": null,
|
||||
"title": "Compute the Rank as a Percentage",
|
||||
"titleSlug": "compute-the-rank-as-a-percentage",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
"likes": 1,
|
||||
"dislikes": 9,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"exampleTestcases": "{\"headers\": {\"Students\": [\"student_id\", \"department_id\", \"mark\"]}, \"rows\": {\"Students\": [[2, 2, 650], [8, 2, 650], [7, 1, 920], [1, 1, 610], [3, 1, 530]]}}",
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"91\", \"totalSubmission\": \"192\", \"totalAcceptedRaw\": 91, \"totalSubmissionRaw\": 192, \"acRate\": \"47.4%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Students\": [\"student_id\", \"department_id\", \"mark\"]}, \"rows\": {\"Students\": [[2, 2, 650], [8, 2, 650], [7, 1, 920], [1, 1, 610], [3, 1, 530]]}}",
|
||||
"metaData": "{\n \"mssql\": [\n \"Create table Students (student_id int, department_id int, mark int)\"\n ],\n \"oraclesql\": [\n \"Create table Students (student_id int, department_id int, mark int)\"\n ],\n \"database\": true,\n \"mysql\": [\n \"Create table If Not Exists Students (student_id int, department_id int, mark int)\"\n ]\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Students (student_id int, department_id int, mark int)",
|
||||
"Truncate table Students",
|
||||
"insert into Students (student_id, department_id, mark) values ('2', '2', '650')",
|
||||
"insert into Students (student_id, department_id, mark) values ('8', '2', '650')",
|
||||
"insert into Students (student_id, department_id, mark) values ('7', '1', '920')",
|
||||
"insert into Students (student_id, department_id, mark) values ('1', '1', '610')",
|
||||
"insert into Students (student_id, department_id, mark) values ('3', '1', '530')"
|
||||
],
|
||||
"enableRunCode": true,
|
||||
"enableTestMode": false,
|
||||
"enableDebugger": false,
|
||||
"envInfo": "{\"mysql\": [\"MySQL\", \"<p><code>MySQL 8.0</code>.</p>\"], \"mssql\": [\"MS SQL Server\", \"<p><code>mssql server 2019</code>.</p>\"], \"oraclesql\": [\"Oracle\", \"<p><code>Oracle Sql 11.2</code>.</p>\"]}",
|
||||
"libraryUrl": null,
|
||||
"adminUrl": null,
|
||||
"challengeQuestion": null,
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user