mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 06:51:41 +08:00
update
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "1546",
|
||||
"questionFrontendId": "1412",
|
||||
"boundTopicId": null,
|
||||
"title": "Find the Quiet Students in All Exams",
|
||||
"titleSlug": "find-the-quiet-students-in-all-exams",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Hard",
|
||||
"likes": 142,
|
||||
"dislikes": 11,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"exampleTestcases": "{\"headers\": {\"Student\": [\"student_id\", \"student_name\"], \"Exam\": [\"exam_id\", \"student_id\", \"score\"]}, \"rows\": {\"Student\": [[1, \"Daniel\"], [2, \"Jade\"], [3, \"Stella\"], [4, \"Jonathan\"], [5, \"Will\"]], \"Exam\": [[10, 1, 70], [10, 2, 80], [10, 3, 90], [20, 1, 80], [30, 1, 70], [30, 3, 80], [30, 4, 90], [40, 1, 60], [40, 2, 70], [40, 4, 80]]}}",
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": null,
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"16.1K\", \"totalSubmission\": \"25.6K\", \"totalAcceptedRaw\": 16053, \"totalSubmissionRaw\": 25621, \"acRate\": \"62.7%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Student\": [\"student_id\", \"student_name\"], \"Exam\": [\"exam_id\", \"student_id\", \"score\"]}, \"rows\": {\"Student\": [[1, \"Daniel\"], [2, \"Jade\"], [3, \"Stella\"], [4, \"Jonathan\"], [5, \"Will\"]], \"Exam\": [[10, 1, 70], [10, 2, 80], [10, 3, 90], [20, 1, 80], [30, 1, 70], [30, 3, 80], [30, 4, 90], [40, 1, 60], [40, 2, 70], [40, 4, 80]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Student (student_id int, student_name varchar(30))\",\n \"Create table If Not Exists Exam (exam_id int, student_id int, score int)\"\n ],\n \"mssql\": [\n \"Create table Student (student_id int, student_name varchar(30))\",\n \"Create table Exam (exam_id int, student_id int, score int)\"\n ],\n \"oraclesql\": [\n \"Create table Student (student_id int, student_name varchar(30))\",\n \"Create table Exam (exam_id int, student_id int, score int)\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Student (student_id int, student_name varchar(30))",
|
||||
"Create table If Not Exists Exam (exam_id int, student_id int, score int)",
|
||||
"Truncate table Student",
|
||||
"insert into Student (student_id, student_name) values ('1', 'Daniel')",
|
||||
"insert into Student (student_id, student_name) values ('2', 'Jade')",
|
||||
"insert into Student (student_id, student_name) values ('3', 'Stella')",
|
||||
"insert into Student (student_id, student_name) values ('4', 'Jonathan')",
|
||||
"insert into Student (student_id, student_name) values ('5', 'Will')",
|
||||
"Truncate table Exam",
|
||||
"insert into Exam (exam_id, student_id, score) values ('10', '1', '70')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('10', '2', '80')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('10', '3', '90')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('20', '1', '80')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('30', '1', '70')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('30', '3', '80')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('30', '4', '90')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('40', '1', '60')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('40', '2', '70')",
|
||||
"insert into Exam (exam_id, student_id, score) values ('40', '4', '80')"
|
||||
],
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user