mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-03 06:22:54 +08:00
update
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2451",
|
||||
"questionFrontendId": "2324",
|
||||
"boundTopicId": null,
|
||||
"title": "Product Sales Analysis IV",
|
||||
"titleSlug": "product-sales-analysis-iv",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
"likes": 3,
|
||||
"dislikes": 1,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Product Sales Analysis I\", \"titleSlug\": \"product-sales-analysis-i\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Product Sales Analysis II\", \"titleSlug\": \"product-sales-analysis-ii\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Product Sales Analysis III\", \"titleSlug\": \"product-sales-analysis-iii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
|
||||
"exampleTestcases": null,
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": null,
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"439\", \"totalSubmission\": \"501\", \"totalAcceptedRaw\": 439, \"totalSubmissionRaw\": 501, \"acRate\": \"87.6%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Sales\": [\"sale_id\", \"product_id\", \"user_id\", \"quantity\"], \"Product\": [\"product_id\", \"price\"]}, \"rows\": {\"Sales\": [[1, 1, 101, 10], [2, 3, 101, 7], [3, 1, 102, 9], [4, 2, 102, 6], [5, 3, 102, 10], [6, 1, 102, 6]], \"Product\": [[1, 10], [2, 25], [3, 15]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Sales (sale_id int, product_id int, user_id int, quantity int)\",\n \"Create table If Not Exists Product (product_id int, price int)\"\n ],\n \"mssql\": [\n \"Create table Sales (sale_id int, product_id int, user_id int, quantity int)\",\n \"Create table Product (product_id int, price int)\"\n ],\n \"oraclesql\": [\n \"Create table Sales (sale_id int, product_id int, user_id int, quantity int)\",\n \"Create table Product (product_id int, price int)\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Sales (sale_id int, product_id int, user_id int, quantity int)",
|
||||
"Create table If Not Exists Product (product_id int, price int)",
|
||||
"Truncate table Sales",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('1', '1', '101', '10')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('2', '3', '101', '7')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('3', '1', '102', '9')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('4', '2', '102', '6')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('5', '3', '102', '10')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('6', '1', '102', '6')",
|
||||
"Truncate table Product",
|
||||
"insert into Product (product_id, price) values ('1', '10')",
|
||||
"insert into Product (product_id, price) values ('2', '25')",
|
||||
"insert into Product (product_id, price) values ('3', '15')"
|
||||
],
|
||||
"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>\"]}",
|
||||
"libraryUrl": null,
|
||||
"adminUrl": null,
|
||||
"challengeQuestion": null,
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2452",
|
||||
"questionFrontendId": "2329",
|
||||
"boundTopicId": null,
|
||||
"title": "Product Sales Analysis V",
|
||||
"titleSlug": "product-sales-analysis-v",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
"likes": 0,
|
||||
"dislikes": 5,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Product Sales Analysis I\", \"titleSlug\": \"product-sales-analysis-i\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Product Sales Analysis II\", \"titleSlug\": \"product-sales-analysis-ii\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Product Sales Analysis III\", \"titleSlug\": \"product-sales-analysis-iii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
|
||||
"exampleTestcases": "{\"headers\": {\"Sales\": [\"sale_id\", \"product_id\", \"user_id\", \"quantity\"], \"Product\": [\"product_id\", \"price\"]}, \"rows\": {\"Sales\": [[1, 1, 101, 10], [2, 2, 101, 1], [3, 3, 102, 3], [4, 3, 102, 2], [5, 2, 103, 3]], \"Product\": [[1, 10], [2, 25], [3, 15]]}}",
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"337\", \"totalSubmission\": \"408\", \"totalAcceptedRaw\": 337, \"totalSubmissionRaw\": 408, \"acRate\": \"82.6%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Sales\": [\"sale_id\", \"product_id\", \"user_id\", \"quantity\"], \"Product\": [\"product_id\", \"price\"]}, \"rows\": {\"Sales\": [[1, 1, 101, 10], [2, 2, 101, 1], [3, 3, 102, 3], [4, 3, 102, 2], [5, 2, 103, 3]], \"Product\": [[1, 10], [2, 25], [3, 15]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Sales (sale_id int, product_id int, user_id int, quantity int)\",\n \"Create table If Not Exists Product (product_id int, price int)\"\n ],\n \"mssql\": [\n \"Create table Sales (sale_id int, product_id int, user_id int, quantity int)\",\n \"Create table Product (product_id int, price int)\"\n ],\n \"oraclesql\": [\n \"Create table Sales (sale_id int, product_id int, user_id int, quantity int)\",\n \"Create table Product (product_id int, price int)\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Sales (sale_id int, product_id int, user_id int, quantity int)",
|
||||
"Create table If Not Exists Product (product_id int, price int)",
|
||||
"Truncate table Sales",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('1', '1', '101', '10')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('2', '2', '101', '1')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('3', '3', '102', '3')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('4', '3', '102', '2')",
|
||||
"insert into Sales (sale_id, product_id, user_id, quantity) values ('5', '2', '103', '3')",
|
||||
"Truncate table Product",
|
||||
"insert into Product (product_id, price) values ('1', '10')",
|
||||
"insert into Product (product_id, price) values ('2', '25')",
|
||||
"insert into Product (product_id, price) values ('3', '15')"
|
||||
],
|
||||
"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>\"]}",
|
||||
"libraryUrl": null,
|
||||
"adminUrl": null,
|
||||
"challengeQuestion": null,
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
46
leetcode/originData/[no content]valid-palindrome-iv.json
Normal file
46
leetcode/originData/[no content]valid-palindrome-iv.json
Normal file
File diff suppressed because one or more lines are too long
189
leetcode/originData/array-partition.json
Normal file
189
leetcode/originData/array-partition.json
Normal file
File diff suppressed because one or more lines are too long
156
leetcode/originData/count-the-number-of-ideal-arrays.json
Normal file
156
leetcode/originData/count-the-number-of-ideal-arrays.json
Normal file
File diff suppressed because one or more lines are too long
169
leetcode/originData/decode-the-message.json
Normal file
169
leetcode/originData/decode-the-message.json
Normal file
File diff suppressed because one or more lines are too long
155
leetcode/originData/evaluate-boolean-binary-tree.json
Normal file
155
leetcode/originData/evaluate-boolean-binary-tree.json
Normal file
File diff suppressed because one or more lines are too long
155
leetcode/originData/minimum-amount-of-time-to-fill-cups.json
Normal file
155
leetcode/originData/minimum-amount-of-time-to-fill-cups.json
Normal file
File diff suppressed because one or more lines are too long
156
leetcode/originData/minimum-sum-of-squared-difference.json
Normal file
156
leetcode/originData/minimum-sum-of-squared-difference.json
Normal file
File diff suppressed because one or more lines are too long
155
leetcode/originData/move-pieces-to-obtain-a-string.json
Normal file
155
leetcode/originData/move-pieces-to-obtain-a-string.json
Normal file
File diff suppressed because one or more lines are too long
204
leetcode/originData/number-of-increasing-paths-in-a-grid.json
Normal file
204
leetcode/originData/number-of-increasing-paths-in-a-grid.json
Normal file
File diff suppressed because one or more lines are too long
175
leetcode/originData/number-of-people-aware-of-a-secret.json
Normal file
175
leetcode/originData/number-of-people-aware-of-a-secret.json
Normal file
File diff suppressed because one or more lines are too long
155
leetcode/originData/smallest-number-in-infinite-set.json
Normal file
155
leetcode/originData/smallest-number-in-infinite-set.json
Normal file
File diff suppressed because one or more lines are too long
181
leetcode/originData/spiral-matrix-iv.json
Normal file
181
leetcode/originData/spiral-matrix-iv.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
155
leetcode/originData/the-latest-time-to-catch-a-bus.json
Normal file
155
leetcode/originData/the-latest-time-to-catch-a-bus.json
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user