mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
70 lines
5.4 KiB
JSON
70 lines
5.4 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": 2,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"746\", \"totalSubmission\": \"1K\", \"totalAcceptedRaw\": 746, \"totalSubmissionRaw\": 1024, \"acRate\": \"72.9%\"}",
|
|
"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": "{\n \"mysql\": [\n \"Create table If Not Exists Subscriptions (account_id int, start_date date, end_date date)\",\n \"Create table If Not Exists Streams (session_id int, account_id int, stream_date date)\"\n ],\n \"mssql\": [\n \"Create table Subscriptions (account_id int, start_date date, end_date date)\",\n \"Create table Streams (session_id int, account_id int, stream_date date)\"\n ],\n \"oraclesql\": [\n \"Create table Subscriptions (account_id int, start_date date, end_date date)\",\n \"Create table Streams (session_id int, account_id int, stream_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 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>\"]}",
|
|
"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"
|
|
}
|
|
}
|
|
} |