mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
59 lines
3.0 KiB
JSON
59 lines
3.0 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "1759",
|
|
"questionFrontendId": "1613",
|
|
"categoryTitle": "Database",
|
|
"boundTopicId": 442396,
|
|
"title": "Find the Missing IDs",
|
|
"titleSlug": "find-the-missing-ids",
|
|
"content": null,
|
|
"translatedTitle": "找到遗失的ID",
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Medium",
|
|
"likes": 27,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"2.6K\", \"totalSubmission\": \"3.6K\", \"totalAcceptedRaw\": 2613, \"totalSubmissionRaw\": 3610, \"acRate\": \"72.4%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\": {\"Customers\": [\"customer_id\", \"customer_name\"]}, \"rows\": {\"Customers\": [[1, \"Alice\"], [4, \"Bob\"], [5, \"Charlie\"]]}}",
|
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Customers (customer_id int, customer_name varchar(20))\"\n ],\n \"mssql\": [\n \"Create table Customers (customer_id int, customer_name varchar(20))\\n\"\n ],\n \"oraclesql\": [\n \"Create table Customers (customer_id int, customer_name varchar(20))\\n\"\n ],\n \"database\": true\n}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Customers (customer_id int, customer_name varchar(20))",
|
|
"Truncate table Customers",
|
|
"insert into Customers (customer_id, customer_name) values ('1', 'Alice')",
|
|
"insert into Customers (customer_id, customer_name) values ('4', 'Bob')",
|
|
"insert into Customers (customer_id, customer_name) values ('5', 'Charlie')"
|
|
],
|
|
"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\": {\"Customers\": [\"customer_id\", \"customer_name\"]}, \"rows\": {\"Customers\": [[1, \"Alice\"], [4, \"Bob\"], [5, \"Charlie\"]]}}",
|
|
"__typename": "QuestionNode"
|
|
}
|
|
}
|
|
} |