mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
65 lines
3.7 KiB
JSON
65 lines
3.7 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "2281",
|
|
"questionFrontendId": "2142",
|
|
"categoryTitle": "Database",
|
|
"boundTopicId": 1215627,
|
|
"title": "The Number of Passengers in Each Bus I",
|
|
"titleSlug": "the-number-of-passengers-in-each-bus-i",
|
|
"content": null,
|
|
"translatedTitle": null,
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Medium",
|
|
"likes": 0,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"397\", \"totalSubmission\": \"737\", \"totalAcceptedRaw\": 397, \"totalSubmissionRaw\": 737, \"acRate\": \"53.9%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Buses\":[\"bus_id\",\"arrival_time\"],\"Passengers\":[\"passenger_id\",\"arrival_time\"]},\"rows\":{\"Buses\":[[1,2],[2,4],[3,7]],\"Passengers\":[[11,1],[12,5],[13,6],[14,7]]}}",
|
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Buses (bus_id int, arrival_time int)\",\n \"Create table If Not Exists Passengers (passenger_id int, arrival_time int)\"\n ],\n \"mssql\": [\n \"Create table Buses (bus_id int, arrival_time int)\",\n \"Create table Passengers (passenger_id int, arrival_time int)\"\n ],\n \"oraclesql\": [\n \"Create table Buses (bus_id int, arrival_time int)\",\n \"Create table Passengers (passenger_id int, arrival_time int)\"\n ],\n \"database\": true\n}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Buses (bus_id int, arrival_time int)",
|
|
"Create table If Not Exists Passengers (passenger_id int, arrival_time int)",
|
|
"Truncate table Buses",
|
|
"insert into Buses (bus_id, arrival_time) values ('1', '2')",
|
|
"insert into Buses (bus_id, arrival_time) values ('2', '4')",
|
|
"insert into Buses (bus_id, arrival_time) values ('3', '7')",
|
|
"Truncate table Passengers",
|
|
"insert into Passengers (passenger_id, arrival_time) values ('11', '1')",
|
|
"insert into Passengers (passenger_id, arrival_time) values ('12', '5')",
|
|
"insert into Passengers (passenger_id, arrival_time) values ('13', '6')",
|
|
"insert into Passengers (passenger_id, arrival_time) values ('14', '7')"
|
|
],
|
|
"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\":{\"Buses\":[\"bus_id\",\"arrival_time\"],\"Passengers\":[\"passenger_id\",\"arrival_time\"]},\"rows\":{\"Buses\":[[1,2],[2,4],[3,7]],\"Passengers\":[[11,1],[12,5],[13,6],[14,7]]}}",
|
|
"__typename": "QuestionNode"
|
|
}
|
|
}
|
|
} |