mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 07:21:40 +08:00
update
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2441",
|
||||
"questionFrontendId": "2308",
|
||||
"categoryTitle": "Database",
|
||||
"boundTopicId": 1604217,
|
||||
"title": "Arrange Table by Gender",
|
||||
"titleSlug": "arrange-table-by-gender",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
"likes": 1,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"contributors": [],
|
||||
"langToValidPlayground": null,
|
||||
"topicTags": [],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"45\", \"totalSubmission\": \"54\", \"totalAcceptedRaw\": 45, \"totalSubmissionRaw\": 54, \"acRate\": \"83.3%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Genders\": [\"user_id\", \"gender\"]}, \"rows\": {\"Genders\": [[4, \"male\"], [7, \"female\"], [2, \"other\"], [5, \"male\"], [3, \"female\"], [8, \"male\"], [6, \"other\"], [1, \"other\"], [9, \"female\"]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Genders (user_id int, gender ENUM('female', 'other', 'male'))\"\n ],\n \"mssql\": [\n \"Create table Genders (user_id int, gender VARCHAR(6) NOT NULL CHECK (gender IN ('female', 'other', 'male')))\"\n ],\n \"oraclesql\": [\n \"Create table Genders (user_id int, gender VARCHAR(6) NOT NULL CHECK (gender IN ('female', 'other', 'male')))\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Genders (user_id int, gender ENUM('female', 'other', 'male'))",
|
||||
"Truncate table Genders",
|
||||
"insert into Genders (user_id, gender) values ('4', 'male')",
|
||||
"insert into Genders (user_id, gender) values ('7', 'female')",
|
||||
"insert into Genders (user_id, gender) values ('2', 'other')",
|
||||
"insert into Genders (user_id, gender) values ('5', 'male')",
|
||||
"insert into Genders (user_id, gender) values ('3', 'female')",
|
||||
"insert into Genders (user_id, gender) values ('8', 'male')",
|
||||
"insert into Genders (user_id, gender) values ('6', 'other')",
|
||||
"insert into Genders (user_id, gender) values ('1', 'other')",
|
||||
"insert into Genders (user_id, gender) values ('9', 'female')"
|
||||
],
|
||||
"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\": {\"Genders\": [\"user_id\", \"gender\"]}, \"rows\": {\"Genders\": [[4, \"male\"], [7, \"female\"], [2, \"other\"], [5, \"male\"], [3, \"female\"], [8, \"male\"], [6, \"other\"], [1, \"other\"], [9, \"female\"]]}}",
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2440",
|
||||
"questionFrontendId": "2298",
|
||||
"categoryTitle": "Database",
|
||||
"boundTopicId": 1593866,
|
||||
"title": "Tasks Count in the Weekend",
|
||||
"titleSlug": "tasks-count-in-the-weekend",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
"likes": 0,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"contributors": [],
|
||||
"langToValidPlayground": null,
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": "数据库",
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"44\", \"totalSubmission\": \"46\", \"totalAcceptedRaw\": 44, \"totalSubmissionRaw\": 46, \"acRate\": \"95.7%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Tasks\": [\"task_id\", \"assignee_id\", \"submit_date\"]}, \"rows\": {\"Tasks\": [[1, 1, \"2022-06-13\"], [2, 6, \"2022-06-14\"], [3, 6, \"2022-06-15\"], [4, 3, \"2022-06-18\"], [5, 5, \"2022-06-19\"], [6, 7, \"2022-06-19\"]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Tasks (task_id int, assignee_id int, submit_date date)\"\n ],\n \"mssql\": [\n \"Create table Tasks (task_id int, assignee_id int, submit_date date)\"\n ],\n \"oraclesql\": [\n \"Create table Tasks (task_id int, assignee_id int, submit_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 Tasks (task_id int, assignee_id int, submit_date date)",
|
||||
"Truncate table Tasks",
|
||||
"insert into Tasks (task_id, assignee_id, submit_date) values ('1', '1', '2022-06-13')",
|
||||
"insert into Tasks (task_id, assignee_id, submit_date) values ('2', '6', '2022-06-14')",
|
||||
"insert into Tasks (task_id, assignee_id, submit_date) values ('3', '6', '2022-06-15')",
|
||||
"insert into Tasks (task_id, assignee_id, submit_date) values ('4', '3', '2022-06-18')",
|
||||
"insert into Tasks (task_id, assignee_id, submit_date) values ('5', '5', '2022-06-19')",
|
||||
"insert into Tasks (task_id, assignee_id, submit_date) values ('6', '7', '2022-06-19')"
|
||||
],
|
||||
"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\": {\"Tasks\": [\"task_id\", \"assignee_id\", \"submit_date\"]}, \"rows\": {\"Tasks\": [[1, 1, \"2022-06-13\"], [2, 6, \"2022-06-14\"], [3, 6, \"2022-06-15\"], [4, 3, \"2022-06-18\"], [5, 5, \"2022-06-19\"], [6, 7, \"2022-06-19\"]]}}",
|
||||
"__typename": "QuestionNode"
|
||||
}
|
||||
}
|
||||
}
|
171
leetcode-cn/originData/calculate-amount-paid-in-taxes.json
Normal file
171
leetcode-cn/originData/calculate-amount-paid-in-taxes.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
189
leetcode-cn/originData/fair-distribution-of-cookies.json
Normal file
189
leetcode-cn/originData/fair-distribution-of-cookies.json
Normal file
File diff suppressed because one or more lines are too long
183
leetcode-cn/originData/match-substring-after-replacement.json
Normal file
183
leetcode-cn/originData/match-substring-after-replacement.json
Normal file
File diff suppressed because one or more lines are too long
177
leetcode-cn/originData/minimum-path-cost-in-a-grid.json
Normal file
177
leetcode-cn/originData/minimum-path-cost-in-a-grid.json
Normal file
File diff suppressed because one or more lines are too long
191
leetcode-cn/originData/naming-a-company.json
Normal file
191
leetcode-cn/originData/naming-a-company.json
Normal file
File diff suppressed because one or more lines are too long
165
leetcode-cn/originData/strong-password-checker-ii.json
Normal file
165
leetcode-cn/originData/strong-password-checker-ii.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user