1 Star 41 Fork 18

小墨/力扣题库(完整版)

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
[no content]find-the-missing-ids.json 3.85 KB
Copy Edit Raw Blame History
小墨 authored 2023-12-09 19:57 +08:00 . update
{
"data": {
"question": {
"questionId": "1759",
"questionFrontendId": "1613",
"boundTopicId": null,
"title": "Find the Missing IDs",
"titleSlug": "find-the-missing-ids",
"content": null,
"translatedTitle": null,
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 219,
"dislikes": 28,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Report Contiguous Dates\", \"titleSlug\": \"report-contiguous-dates\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Find the Start and End Number of Continuous Ranges\", \"titleSlug\": \"find-the-start-and-end-number-of-continuous-ranges\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Number of Transactions per Visit\", \"titleSlug\": \"number-of-transactions-per-visit\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "{\"headers\": {\"Customers\": [\"customer_id\", \"customer_name\"]}, \"rows\": {\"Customers\": [[1, \"Alice\"], [4, \"Bob\"], [5, \"Charlie\"]]}}",
"categoryTitle": "Database",
"contributors": [],
"topicTags": [
{
"name": "Database",
"slug": "database",
"translatedName": null,
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"17.2K\", \"totalSubmission\": \"23.5K\", \"totalAcceptedRaw\": 17205, \"totalSubmissionRaw\": 23478, \"acRate\": \"73.3%\"}",
"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,
"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>\"], \"pythondata\": [\"Pandas\", \"<p>Python 3.10 with Pandas 2.0.2 and NumPy 1.25.0</p>\"], \"postgresql\": [\"PostgreSQL\", \"<p>PostgreSQL 16</p>\"]}",
"libraryUrl": null,
"adminUrl": null,
"challengeQuestion": null,
"__typename": "QuestionNode"
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/coder-xiaomo/leetcode-problemset.git
git@gitee.com:coder-xiaomo/leetcode-problemset.git
coder-xiaomo
leetcode-problemset
力扣题库(完整版)
master

Search