mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
69 lines
4.2 KiB
JSON
69 lines
4.2 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "1579",
|
|
"questionFrontendId": "1454",
|
|
"categoryTitle": "Database",
|
|
"boundTopicId": 258463,
|
|
"title": "Active Users",
|
|
"titleSlug": "active-users",
|
|
"content": null,
|
|
"translatedTitle": "活跃用户",
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Medium",
|
|
"likes": 54,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"6.8K\", \"totalSubmission\": \"17.1K\", \"totalAcceptedRaw\": 6775, \"totalSubmissionRaw\": 17142, \"acRate\": \"39.5%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Accounts\":[\"id\",\"name\"],\"Logins\":[\"id\",\"login_date\"]},\"rows\":{\"Accounts\":[[1,\"Winston\"],[7,\"Jonathan\"]],\"Logins\":[[7,\"2020-05-30\"],[1,\"2020-05-30\"],[7,\"2020-05-31\"],[7,\"2020-06-01\"],[7,\"2020-06-02\"],[7,\"2020-06-02\"],[7,\"2020-06-03\"],[1,\"2020-06-07\"],[7,\"2020-06-10\"]]}}",
|
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Accounts (id int, name varchar(10))\",\n \"Create table If Not Exists Logins (id int, login_date date)\"\n ],\n \"mssql\": [\n \"Create table Accounts (id int, name varchar(10))\",\n \"Create table Logins (id int, login_date date)\"\n ],\n \"oraclesql\": [\n \"Create table Accounts (id int, name varchar(10))\",\n \"Create table Logins (id int, login_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 Accounts (id int, name varchar(10))",
|
|
"Create table If Not Exists Logins (id int, login_date date)",
|
|
"Truncate table Accounts",
|
|
"insert into Accounts (id, name) values ('1', 'Winston')",
|
|
"insert into Accounts (id, name) values ('7', 'Jonathan')",
|
|
"Truncate table Logins",
|
|
"insert into Logins (id, login_date) values ('7', '2020-05-30')",
|
|
"insert into Logins (id, login_date) values ('1', '2020-05-30')",
|
|
"insert into Logins (id, login_date) values ('7', '2020-05-31')",
|
|
"insert into Logins (id, login_date) values ('7', '2020-06-01')",
|
|
"insert into Logins (id, login_date) values ('7', '2020-06-02')",
|
|
"insert into Logins (id, login_date) values ('7', '2020-06-02')",
|
|
"insert into Logins (id, login_date) values ('7', '2020-06-03')",
|
|
"insert into Logins (id, login_date) values ('1', '2020-06-07')",
|
|
"insert into Logins (id, login_date) values ('7', '2020-06-10')"
|
|
],
|
|
"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\":{\"Accounts\":[\"id\",\"name\"],\"Logins\":[\"id\",\"login_date\"]},\"rows\":{\"Accounts\":[[1,\"Winston\"],[7,\"Jonathan\"]],\"Logins\":[[7,\"2020-05-30\"],[1,\"2020-05-30\"],[7,\"2020-05-31\"],[7,\"2020-06-01\"],[7,\"2020-06-02\"],[7,\"2020-06-02\"],[7,\"2020-06-03\"],[1,\"2020-06-07\"],[7,\"2020-06-10\"]]}}",
|
|
"__typename": "QuestionNode"
|
|
}
|
|
}
|
|
} |