mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 15:31:43 +08:00
59 lines
4.2 KiB
JSON
59 lines
4.2 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": 47,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[{\"title\": \"Report Contiguous Dates\", \"titleSlug\": \"report-contiguous-dates\", \"difficulty\": \"Hard\", \"translatedTitle\": \"\\u62a5\\u544a\\u7cfb\\u7edf\\u72b6\\u6001\\u7684\\u8fde\\u7eed\\u65e5\\u671f\", \"isPaidOnly\": true}, {\"title\": \"Find the Start and End Number of Continuous Ranges\", \"titleSlug\": \"find-the-start-and-end-number-of-continuous-ranges\", \"difficulty\": \"Medium\", \"translatedTitle\": \"\\u627e\\u5230\\u8fde\\u7eed\\u533a\\u95f4\\u7684\\u5f00\\u59cb\\u548c\\u7ed3\\u675f\\u6570\\u5b57\", \"isPaidOnly\": true}, {\"title\": \"Number of Transactions per Visit\", \"titleSlug\": \"number-of-transactions-per-visit\", \"difficulty\": \"Hard\", \"translatedTitle\": \"\\u6bcf\\u6b21\\u8bbf\\u95ee\\u7684\\u4ea4\\u6613\\u6b21\\u6570\", \"isPaidOnly\": true}]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"6.6K\", \"totalSubmission\": \"9.1K\", \"totalAcceptedRaw\": 6618, \"totalSubmissionRaw\": 9074, \"acRate\": \"72.9%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\": {\"Customers\": [\"customer_id\", \"customer_name\"]}, \"rows\": {\"Customers\": [[1, \"Alice\"], [4, \"Bob\"], [5, \"Charlie\"]]}}",
|
|
"metaData": "{\"mysql\":[\"Create table If Not Exists Customers (customer_id int, customer_name varchar(20))\"],\"mssql\":[\"Create table Customers (customer_id int, customer_name varchar(20))\\n\"],\"oraclesql\":[\"Create table Customers (customer_id int, customer_name varchar(20))\\n\"],\"database\":true,\"name\":\"find_missing_ids\",\"pythondata\":[\"Customers = pd.DataFrame([], columns=['customer_id', 'customer_name']).astype({'customer_id':'Int64', 'customer_name':'object'})\"],\"postgresql\":[\"Create table If Not Exists Customers (customer_id int, customer_name varchar(20))\"],\"database_schema\":{\"Customers\":{\"customer_id\":\"INT\",\"customer_name\":\"VARCHAR(20)\"}}}",
|
|
"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>\"],\"pythondata\":[\"Pandas\",\"<p>Python 3.10 with Pandas 2.2.2 and NumPy 1.26.4<\\/p>\"],\"postgresql\":[\"PostgreSQL\",\"<p>PostgreSQL 16<\\/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"
|
|
}
|
|
}
|
|
} |