mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
68 lines
4.7 KiB
JSON
68 lines
4.7 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "1481",
|
|
"questionFrontendId": "1350",
|
|
"boundTopicId": null,
|
|
"title": "Students With Invalid Departments",
|
|
"titleSlug": "students-with-invalid-departments",
|
|
"content": null,
|
|
"translatedTitle": null,
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Easy",
|
|
"likes": 127,
|
|
"dislikes": 7,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"exampleTestcases": "{\"headers\":{\"Departments\":[\"id\",\"name\"],\"Students\":[\"id\",\"name\",\"department_id\"]},\"rows\":{\"Departments\":[[1,\"Electrical Engineering\"],[7,\"Computer Engineering\"],[13,\"Bussiness Administration\"]],\"Students\":[[23,\"Alice\",1],[1,\"Bob\",7],[5,\"Jennifer\",13],[2,\"John\",14],[4,\"Jasmine\",77],[3,\"Steve\",74],[6,\"Luis\",1],[8,\"Jonathan\",7],[7,\"Daiana\",33],[11,\"Madelynn\",1]]}}",
|
|
"categoryTitle": "Database",
|
|
"contributors": [],
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": null,
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"38.4K\", \"totalSubmission\": \"42.4K\", \"totalAcceptedRaw\": 38356, \"totalSubmissionRaw\": 42385, \"acRate\": \"90.5%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Departments\":[\"id\",\"name\"],\"Students\":[\"id\",\"name\",\"department_id\"]},\"rows\":{\"Departments\":[[1,\"Electrical Engineering\"],[7,\"Computer Engineering\"],[13,\"Bussiness Administration\"]],\"Students\":[[23,\"Alice\",1],[1,\"Bob\",7],[5,\"Jennifer\",13],[2,\"John\",14],[4,\"Jasmine\",77],[3,\"Steve\",74],[6,\"Luis\",1],[8,\"Jonathan\",7],[7,\"Daiana\",33],[11,\"Madelynn\",1]]}}",
|
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Departments (id int, name varchar(30))\",\n \"Create table If Not Exists Students (id int, name varchar(30), department_id int)\"\n ],\n \"mssql\": [\n \"Create table Departments (id int, name varchar(30))\",\n \"Create table Students (id int, name varchar(30), department_id int)\"\n ],\n \"oraclesql\": [\n \"Create table Departments (id int, name varchar(30))\",\n \"Create table Students (id int, name varchar(30), department_id int)\"\n ],\n \"database\": true\n}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Departments (id int, name varchar(30))",
|
|
"Create table If Not Exists Students (id int, name varchar(30), department_id int)",
|
|
"Truncate table Departments",
|
|
"insert into Departments (id, name) values ('1', 'Electrical Engineering')",
|
|
"insert into Departments (id, name) values ('7', 'Computer Engineering')",
|
|
"insert into Departments (id, name) values ('13', 'Bussiness Administration')",
|
|
"Truncate table Students",
|
|
"insert into Students (id, name, department_id) values ('23', 'Alice', '1')",
|
|
"insert into Students (id, name, department_id) values ('1', 'Bob', '7')",
|
|
"insert into Students (id, name, department_id) values ('5', 'Jennifer', '13')",
|
|
"insert into Students (id, name, department_id) values ('2', 'John', '14')",
|
|
"insert into Students (id, name, department_id) values ('4', 'Jasmine', '77')",
|
|
"insert into Students (id, name, department_id) values ('3', 'Steve', '74')",
|
|
"insert into Students (id, name, department_id) values ('6', 'Luis', '1')",
|
|
"insert into Students (id, name, department_id) values ('8', 'Jonathan', '7')",
|
|
"insert into Students (id, name, department_id) values ('7', 'Daiana', '33')",
|
|
"insert into Students (id, name, department_id) values ('11', 'Madelynn', '1')"
|
|
],
|
|
"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"
|
|
}
|
|
}
|
|
} |