mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-14 03:41:41 +08:00
add leetcode problem-cn part1
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "1415",
|
||||
"questionFrontendId": "1280",
|
||||
"categoryTitle": "Database",
|
||||
"boundTopicId": 51351,
|
||||
"title": "Students and Examinations",
|
||||
"titleSlug": "students-and-examinations",
|
||||
"content": null,
|
||||
"translatedTitle": "学生们参加各科测试的次数",
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Easy",
|
||||
"likes": 66,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"contributors": [],
|
||||
"langToValidPlayground": null,
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": "数据库",
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"8.6K\", \"totalSubmission\": \"17.2K\", \"totalAcceptedRaw\": 8585, \"totalSubmissionRaw\": 17172, \"acRate\": \"50.0%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\":{\"Students\":[\"student_id\",\"student_name\"],\"Subjects\":[\"subject_name\"],\"Examinations\":[\"student_id\",\"subject_name\"]},\"rows\":{\"Students\":[[1,\"Alice\"],[2,\"Bob\"],[13,\"John\"],[6,\"Alex\"]],\"Subjects\":[[\"Math\"],[\"Physics\"],[\"Programming\"]],\"Examinations\":[[1,\"Math\"],[1,\"Physics\"],[1,\"Programming\"],[2,\"Programming\"],[1,\"Physics\"],[1,\"Math\"],[13,\"Math\"],[13,\"Programming\"],[13,\"Physics\"],[2,\"Math\"],[1,\"Math\"]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Students (student_id int, student_name varchar(20))\",\n \"Create table If Not Exists Subjects (subject_name varchar(20))\",\n \"Create table If Not Exists Examinations (student_id int, subject_name varchar(20))\"\n ],\n \"mssql\": [\n \"Create table Students (student_id int, student_name varchar(20))\",\n \"Create table Subjects (subject_name varchar(20))\",\n \"Create table Examinations (student_id int, subject_name varchar(20))\"\n ],\n \"oraclesql\": [\n \"Create table Students (student_id int, student_name varchar(20))\\n\",\n \"Create table Subjects (subject_name varchar(20))\\n\",\n \"Create table Examinations (student_id int, subject_name varchar(20))\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Students (student_id int, student_name varchar(20))",
|
||||
"Create table If Not Exists Subjects (subject_name varchar(20))",
|
||||
"Create table If Not Exists Examinations (student_id int, subject_name varchar(20))",
|
||||
"Truncate table Students",
|
||||
"insert into Students (student_id, student_name) values ('1', 'Alice')",
|
||||
"insert into Students (student_id, student_name) values ('2', 'Bob')",
|
||||
"insert into Students (student_id, student_name) values ('13', 'John')",
|
||||
"insert into Students (student_id, student_name) values ('6', 'Alex')",
|
||||
"Truncate table Subjects",
|
||||
"insert into Subjects (subject_name) values ('Math')",
|
||||
"insert into Subjects (subject_name) values ('Physics')",
|
||||
"insert into Subjects (subject_name) values ('Programming')",
|
||||
"Truncate table Examinations",
|
||||
"insert into Examinations (student_id, subject_name) values ('1', 'Math')",
|
||||
"insert into Examinations (student_id, subject_name) values ('1', 'Physics')",
|
||||
"insert into Examinations (student_id, subject_name) values ('1', 'Programming')",
|
||||
"insert into Examinations (student_id, subject_name) values ('2', 'Programming')",
|
||||
"insert into Examinations (student_id, subject_name) values ('1', 'Physics')",
|
||||
"insert into Examinations (student_id, subject_name) values ('1', 'Math')",
|
||||
"insert into Examinations (student_id, subject_name) values ('13', 'Math')",
|
||||
"insert into Examinations (student_id, subject_name) values ('13', 'Programming')",
|
||||
"insert into Examinations (student_id, subject_name) values ('13', 'Physics')",
|
||||
"insert into Examinations (student_id, subject_name) values ('2', 'Math')",
|
||||
"insert into Examinations (student_id, subject_name) values ('1', 'Math')"
|
||||
],
|
||||
"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\",\"student_name\"],\"Subjects\":[\"subject_name\"],\"Examinations\":[\"student_id\",\"subject_name\"]},\"rows\":{\"Students\":[[1,\"Alice\"],[2,\"Bob\"],[13,\"John\"],[6,\"Alex\"]],\"Subjects\":[[\"Math\"],[\"Physics\"],[\"Programming\"]],\"Examinations\":[[1,\"Math\"],[1,\"Physics\"],[1,\"Programming\"],[2,\"Programming\"],[1,\"Physics\"],[1,\"Math\"],[13,\"Math\"],[13,\"Programming\"],[13,\"Physics\"],[2,\"Math\"],[1,\"Math\"]]}}",
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user