mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
63 lines
4.2 KiB
JSON
63 lines
4.2 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "1974",
|
|
"questionFrontendId": "1821",
|
|
"categoryTitle": "Database",
|
|
"boundTopicId": 715089,
|
|
"title": "Find Customers With Positive Revenue this Year",
|
|
"titleSlug": "find-customers-with-positive-revenue-this-year",
|
|
"content": null,
|
|
"translatedTitle": "寻找今年具有正收入的客户",
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Easy",
|
|
"likes": 13,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"10K\", \"totalSubmission\": \"11.6K\", \"totalAcceptedRaw\": 10037, \"totalSubmissionRaw\": 11565, \"acRate\": \"86.8%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Customers\":[\"customer_id\",\"year\",\"revenue\"]},\"rows\":{\"Customers\":[[\"1\",\"2018\",\"50\"],[\"1\",\"2021\",\"30\"],[\"1\",\"2020\",\"70\"],[\"2\",\"2021\",\"-50\"],[\"3\",\"2018\",\"10\"],[\"3\",\"2016\",\"50\"],[\"4\",\"2021\",\"20\"]]}}",
|
|
"metaData": "{\"mysql\":[\"Create table If Not Exists Customers (customer_id int, year int, revenue int)\"],\"mssql\":[\"Create table Customers (customer_id int, year int, revenue int)\"],\"oraclesql\":[\"Create table Customers (customer_id int, year int, revenue int)\"],\"database\":true,\"name\":\"find_customers\",\"pythondata\":[\"Customers = pd.DataFrame([], columns=['customer_id', 'year', 'revenue']).astype({'customer_id':'Int64', 'year':'Int64', 'revenue':'Int64'})\"],\"postgresql\":[\"Create table If Not Exists Customers (customer_id int, year int, revenue int)\"],\"database_schema\":{\"Customers\":{\"customer_id\":\"INT\",\"year\":\"INT\",\"revenue\":\"INT\"}}}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Customers (customer_id int, year int, revenue int)",
|
|
"Truncate table Customers",
|
|
"insert into Customers (customer_id, year, revenue) values ('1', '2018', '50')",
|
|
"insert into Customers (customer_id, year, revenue) values ('1', '2021', '30')",
|
|
"insert into Customers (customer_id, year, revenue) values ('1', '2020', '70')",
|
|
"insert into Customers (customer_id, year, revenue) values ('2', '2021', '-50')",
|
|
"insert into Customers (customer_id, year, revenue) values ('3', '2018', '10')",
|
|
"insert into Customers (customer_id, year, revenue) values ('3', '2016', '50')",
|
|
"insert into Customers (customer_id, year, revenue) values ('4', '2021', '20')"
|
|
],
|
|
"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.0.2 and NumPy 1.25.0<\\/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\",\"year\",\"revenue\"]},\"rows\":{\"Customers\":[[\"1\",\"2018\",\"50\"],[\"1\",\"2021\",\"30\"],[\"1\",\"2020\",\"70\"],[\"2\",\"2021\",\"-50\"],[\"3\",\"2018\",\"10\"],[\"3\",\"2016\",\"50\"],[\"4\",\"2021\",\"20\"]]}}",
|
|
"__typename": "QuestionNode"
|
|
}
|
|
}
|
|
} |