mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 06:51:41 +08:00
update
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "1712",
|
||||
"questionFrontendId": "1565",
|
||||
"boundTopicId": null,
|
||||
"title": "Unique Orders and Customers Per Month",
|
||||
"titleSlug": "unique-orders-and-customers-per-month",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Easy",
|
||||
"likes": 52,
|
||||
"dislikes": 28,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"exampleTestcases": "{\"headers\":{\"Orders\":[\"order_id\",\"order_date\",\"customer_id\",\"invoice\"]},\"rows\":{\"Orders\":[[1,\"2020-09-15\",1,30],[2,\"2020-09-17\",2,90],[3,\"2020-10-06\",3,20],[4,\"2020-10-20\",3,21],[5,\"2020-11-10\",1,10],[6,\"2020-11-21\",2,15],[7,\"2020-12-01\",4,55],[8,\"2020-12-03\",4,77],[9,\"2021-01-07\",3,31],[10,\"2021-01-15\",2,20]]}}",
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": null,
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"13.8K\", \"totalSubmission\": \"16.6K\", \"totalAcceptedRaw\": 13773, \"totalSubmissionRaw\": 16563, \"acRate\": \"83.2%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\":{\"Orders\":[\"order_id\",\"order_date\",\"customer_id\",\"invoice\"]},\"rows\":{\"Orders\":[[1,\"2020-09-15\",1,30],[2,\"2020-09-17\",2,90],[3,\"2020-10-06\",3,20],[4,\"2020-10-20\",3,21],[5,\"2020-11-10\",1,10],[6,\"2020-11-21\",2,15],[7,\"2020-12-01\",4,55],[8,\"2020-12-03\",4,77],[9,\"2021-01-07\",3,31],[10,\"2021-01-15\",2,20]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Orders (order_id int, order_date date, customer_id int, invoice int)\"\n ],\n \"mssql\": [\n \"Create table Orders (order_id int, order_date date, customer_id int, invoice int)\"\n ],\n \"oraclesql\": [\n \"Create table Orders (order_id int, order_date date, customer_id int, invoice int)\",\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, order_date date, customer_id int, invoice int)",
|
||||
"Truncate table Orders",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('1', '2020-09-15', '1', '30')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('2', '2020-09-17', '2', '90')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('3', '2020-10-06', '3', '20')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('4', '2020-10-20', '3', '21')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('5', '2020-11-10', '1', '10')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('6', '2020-11-21', '2', '15')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('7', '2020-12-01', '4', '55')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('8', '2020-12-03', '4', '77')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('9', '2021-01-07', '3', '31')",
|
||||
"insert into Orders (order_id, order_date, customer_id, invoice) values ('10', '2021-01-15', '2', '20')"
|
||||
],
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user