1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/originData/[no content]number-of-accounts-that-did-not-stream.json
2023-12-09 19:57:46 +08:00

70 lines
6.2 KiB
JSON

{
"data": {
"question": {
"questionId": "2167",
"questionFrontendId": "2020",
"categoryTitle": "Database",
"boundTopicId": 1021464,
"title": "Number of Accounts That Did Not Stream",
"titleSlug": "number-of-accounts-that-did-not-stream",
"content": null,
"translatedTitle": "无流量的帐户数",
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 4,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
"contributors": [],
"langToValidPlayground": null,
"topicTags": [
{
"name": "Database",
"slug": "database",
"translatedName": "数据库",
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"2.2K\", \"totalSubmission\": \"3.2K\", \"totalAcceptedRaw\": 2209, \"totalSubmissionRaw\": 3188, \"acRate\": \"69.3%\"}",
"hints": [],
"solution": null,
"status": null,
"sampleTestCase": "{\"headers\":{\"Subscriptions\":[\"account_id\",\"start_date\",\"end_date\"],\"Streams\":[\"session_id\",\"account_id\",\"stream_date\"]},\"rows\":{\"Subscriptions\":[[9,\"2020-02-18\",\"2021-10-30\"],[3,\"2021-09-21\",\"2021-11-13\"],[11,\"2020-02-28\",\"2020-08-18\"],[13,\"2021-04-20\",\"2021-09-22\"],[4,\"2020-10-26\",\"2021-05-08\"],[5,\"2020-09-11\",\"2021-01-17\"]],\"Streams\":[[14,9,\"2020-05-16\"],[16,3,\"2021-10-27\"],[18,11,\"2020-04-29\"],[17,13,\"2021-08-08\"],[19,4,\"2020-12-31\"],[13,5,\"2021-01-05\"]]}}",
"metaData": "{\"mysql\":[\"Create table If Not Exists Subscriptions (account_id int, start_date date, end_date date)\",\"Create table If Not Exists Streams (session_id int, account_id int, stream_date date)\"],\"mssql\":[\"Create table Subscriptions (account_id int, start_date date, end_date date)\",\"Create table Streams (session_id int, account_id int, stream_date date)\"],\"oraclesql\":[\"Create table Subscriptions (account_id int, start_date date, end_date date)\",\"Create table Streams (session_id int, account_id int, stream_date date)\",\"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\"],\"database\":true,\"name\":\"find_target_accounts\",\"pythondata\":[\"Subscriptions = pd.DataFrame([], columns=['account_id', 'start_date', 'end_date']).astype({'account_id':'Int64', 'start_date':'datetime64[ns]', 'end_date':'datetime64[ns]'})\",\"Streams = pd.DataFrame([], columns=['session_id', 'account_id', 'stream_date']).astype({'session_id':'Int64', 'account_id':'Int64', 'stream_date':'datetime64[ns]'})\"],\"postgresql\":[\"Create table If Not Exists Subscriptions (account_id int, start_date date, end_date date)\",\"Create table If Not Exists Streams (session_id int, account_id int, stream_date date)\"],\"database_schema\":{\"Subscriptions\":{\"account_id\":\"INT\",\"start_date\":\"DATE\",\"end_date\":\"DATE\"},\"Streams\":{\"session_id\":\"INT\",\"account_id\":\"INT\",\"stream_date\":\"DATE\"}}}",
"judgerAvailable": true,
"judgeType": "large",
"mysqlSchemas": [
"Create table If Not Exists Subscriptions (account_id int, start_date date, end_date date)",
"Create table If Not Exists Streams (session_id int, account_id int, stream_date date)",
"Truncate table Subscriptions",
"insert into Subscriptions (account_id, start_date, end_date) values ('9', '2020-02-18', '2021-10-30')",
"insert into Subscriptions (account_id, start_date, end_date) values ('3', '2021-09-21', '2021-11-13')",
"insert into Subscriptions (account_id, start_date, end_date) values ('11', '2020-02-28', '2020-08-18')",
"insert into Subscriptions (account_id, start_date, end_date) values ('13', '2021-04-20', '2021-09-22')",
"insert into Subscriptions (account_id, start_date, end_date) values ('4', '2020-10-26', '2021-05-08')",
"insert into Subscriptions (account_id, start_date, end_date) values ('5', '2020-09-11', '2021-01-17')",
"Truncate table Streams",
"insert into Streams (session_id, account_id, stream_date) values ('14', '9', '2020-05-16')",
"insert into Streams (session_id, account_id, stream_date) values ('16', '3', '2021-10-27')",
"insert into Streams (session_id, account_id, stream_date) values ('18', '11', '2020-04-29')",
"insert into Streams (session_id, account_id, stream_date) values ('17', '13', '2021-08-08')",
"insert into Streams (session_id, account_id, stream_date) values ('19', '4', '2020-12-31')",
"insert into Streams (session_id, account_id, stream_date) values ('13', '5', '2021-01-05')"
],
"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\":{\"Subscriptions\":[\"account_id\",\"start_date\",\"end_date\"],\"Streams\":[\"session_id\",\"account_id\",\"stream_date\"]},\"rows\":{\"Subscriptions\":[[9,\"2020-02-18\",\"2021-10-30\"],[3,\"2021-09-21\",\"2021-11-13\"],[11,\"2020-02-28\",\"2020-08-18\"],[13,\"2021-04-20\",\"2021-09-22\"],[4,\"2020-10-26\",\"2021-05-08\"],[5,\"2020-09-11\",\"2021-01-17\"]],\"Streams\":[[14,9,\"2020-05-16\"],[16,3,\"2021-10-27\"],[18,11,\"2020-04-29\"],[17,13,\"2021-08-08\"],[19,4,\"2020-12-31\"],[13,5,\"2021-01-05\"]]}}",
"__typename": "QuestionNode"
}
}
}