mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
58 lines
3.2 KiB
JSON
58 lines
3.2 KiB
JSON
|
{
|
||
|
"data": {
|
||
|
"question": {
|
||
|
"questionId": "2030",
|
||
|
"questionFrontendId": "1875",
|
||
|
"boundTopicId": null,
|
||
|
"title": "Group Employees of the Same Salary",
|
||
|
"titleSlug": "group-employees-of-the-same-salary",
|
||
|
"content": null,
|
||
|
"translatedTitle": null,
|
||
|
"translatedContent": null,
|
||
|
"isPaidOnly": true,
|
||
|
"difficulty": "Medium",
|
||
|
"likes": 36,
|
||
|
"dislikes": 3,
|
||
|
"isLiked": null,
|
||
|
"similarQuestions": "[]",
|
||
|
"exampleTestcases": "{\"headers\":{\"Employees\":[\"employee_id\",\"name\",\"salary\"]},\"rows\":{\"Employees\":[[2,\"Meir\",3000],[3,\"Michael\",3000],[7,\"Addilyn\",7400],[8,\"Juan\",6100],[9,\"Kannon\",7400]]}}",
|
||
|
"categoryTitle": "Database",
|
||
|
"contributors": [],
|
||
|
"topicTags": [
|
||
|
{
|
||
|
"name": "Database",
|
||
|
"slug": "database",
|
||
|
"translatedName": null,
|
||
|
"__typename": "TopicTagNode"
|
||
|
}
|
||
|
],
|
||
|
"companyTagStats": null,
|
||
|
"codeSnippets": null,
|
||
|
"stats": "{\"totalAccepted\": \"5K\", \"totalSubmission\": \"6.6K\", \"totalAcceptedRaw\": 4981, \"totalSubmissionRaw\": 6599, \"acRate\": \"75.5%\"}",
|
||
|
"hints": [],
|
||
|
"solution": null,
|
||
|
"status": null,
|
||
|
"sampleTestCase": "{\"headers\":{\"Employees\":[\"employee_id\",\"name\",\"salary\"]},\"rows\":{\"Employees\":[[2,\"Meir\",3000],[3,\"Michael\",3000],[7,\"Addilyn\",7400],[8,\"Juan\",6100],[9,\"Kannon\",7400]]}}",
|
||
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Employees (employee_id int, name varchar(30), salary int)\"\n ],\n \"mssql\": [\n \"Create table Employees (employee_id int, name varchar(30), salary int)\"\n ],\n \"oraclesql\": [\n \"Create table Employees (employee_id int, name varchar(30), salary int)\"\n ],\n \"database\": true\n}",
|
||
|
"judgerAvailable": true,
|
||
|
"judgeType": "large",
|
||
|
"mysqlSchemas": [
|
||
|
"Create table If Not Exists Employees (employee_id int, name varchar(30), salary int)",
|
||
|
"Truncate table Employees",
|
||
|
"insert into Employees (employee_id, name, salary) values ('2', 'Meir', '3000')",
|
||
|
"insert into Employees (employee_id, name, salary) values ('3', 'Michael', '3000')",
|
||
|
"insert into Employees (employee_id, name, salary) values ('7', 'Addilyn', '7400')",
|
||
|
"insert into Employees (employee_id, name, salary) values ('8', 'Juan', '6100')",
|
||
|
"insert into Employees (employee_id, name, salary) values ('9', 'Kannon', '7400')"
|
||
|
],
|
||
|
"enableRunCode": true,
|
||
|
"enableTestMode": false,
|
||
|
"enableDebugger": false,
|
||
|
"envInfo": "{\"mysql\": [\"MySQL\", \"<p><code>MySQL 8.0</code>.</p>\"], \"mssql\": [\"MS SQL Server\", \"<p><code>mssql server 2019</code>.</p>\"], \"oraclesql\": [\"Oracle\", \"<p><code>Oracle Sql 11.2</code>.</p>\"]}",
|
||
|
"libraryUrl": null,
|
||
|
"adminUrl": null,
|
||
|
"challengeQuestion": null,
|
||
|
"__typename": "QuestionNode"
|
||
|
}
|
||
|
}
|
||
|
}
|