mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 07:21:40 +08:00
update
This commit is contained in:
50
leetcode-cn/originData/[no content]jump-game-ix.json
Normal file
50
leetcode-cn/originData/[no content]jump-game-ix.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2431",
|
||||
"questionFrontendId": "2292",
|
||||
"categoryTitle": "Database",
|
||||
"boundTopicId": 1532945,
|
||||
"title": "Products With Three or More Orders in Two Consecutive Years",
|
||||
"titleSlug": "products-with-three-or-more-orders-in-two-consecutive-years",
|
||||
"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\": \"47\", \"totalSubmission\": \"100\", \"totalAcceptedRaw\": 47, \"totalSubmissionRaw\": 100, \"acRate\": \"47.0%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Orders\": [\"order_id\", \"product_id\", \"quantity\", \"purchase_date\"]}, \"rows\": {\"Orders\": [[1, 1, 7, \"2020-03-16\"], [2, 1, 4, \"2020-12-02\"], [3, 1, 7, \"2020-05-10\"], [4, 1, 6, \"2021-12-23\"], [5, 1, 5, \"2021-05-21\"], [6, 1, 6, \"2021-10-11\"], [7, 2, 6, \"2022-10-11\"]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Orders (order_id int, product_id int, quantity int, purchase_date date)\"\n ],\n \"mssql\": [\n \"Create table Orders (order_id int, product_id int, quantity int, purchase_date date)\"\n ],\n \"oraclesql\": [\n \"Create table Orders (order_id int, product_id int, quantity int, purchase_date date)\",\n \"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Orders (order_id int, product_id int, quantity int, purchase_date date)",
|
||||
"Truncate table Orders",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('1', '1', '7', '2020-03-16')",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('2', '1', '4', '2020-12-02')",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('3', '1', '7', '2020-05-10')",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('4', '1', '6', '2021-12-23')",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('5', '1', '5', '2021-05-21')",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('6', '1', '6', '2021-10-11')",
|
||||
"insert into Orders (order_id, product_id, quantity, purchase_date) values ('7', '2', '6', '2022-10-11')"
|
||||
],
|
||||
"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\": {\"Orders\": [\"order_id\", \"product_id\", \"quantity\", \"purchase_date\"]}, \"rows\": {\"Orders\": [[1, 1, 7, \"2020-03-16\"], [2, 1, 4, \"2020-12-02\"], [3, 1, 7, \"2020-05-10\"], [4, 1, 6, \"2021-12-23\"], [5, 1, 5, \"2021-05-21\"], [6, 1, 6, \"2021-10-11\"], [7, 2, 6, \"2022-10-11\"]]}}",
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
165
leetcode-cn/originData/apply-discount-to-prices.json
Normal file
165
leetcode-cn/originData/apply-discount-to-prices.json
Normal file
File diff suppressed because one or more lines are too long
185
leetcode-cn/originData/booking-concert-tickets-in-groups.json
Normal file
185
leetcode-cn/originData/booking-concert-tickets-in-groups.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
197
leetcode-cn/originData/design-a-text-editor.json
Normal file
197
leetcode-cn/originData/design-a-text-editor.json
Normal file
File diff suppressed because one or more lines are too long
183
leetcode-cn/originData/maximum-total-importance-of-roads.json
Normal file
183
leetcode-cn/originData/maximum-total-importance-of-roads.json
Normal file
File diff suppressed because one or more lines are too long
171
leetcode-cn/originData/min-max-game.json
Normal file
171
leetcode-cn/originData/min-max-game.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
177
leetcode-cn/originData/replace-elements-in-an-array.json
Normal file
177
leetcode-cn/originData/replace-elements-in-an-array.json
Normal file
File diff suppressed because one or more lines are too long
183
leetcode-cn/originData/sender-with-largest-word-count.json
Normal file
183
leetcode-cn/originData/sender-with-largest-word-count.json
Normal file
File diff suppressed because one or more lines are too long
184
leetcode-cn/originData/steps-to-make-array-non-decreasing.json
Normal file
184
leetcode-cn/originData/steps-to-make-array-non-decreasing.json
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user