mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
57 lines
2.8 KiB
JSON
57 lines
2.8 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "2302",
|
|
"questionFrontendId": "2159",
|
|
"boundTopicId": null,
|
|
"title": "Order Two Columns Independently",
|
|
"titleSlug": "order-two-columns-independently",
|
|
"content": null,
|
|
"translatedTitle": null,
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Medium",
|
|
"likes": 12,
|
|
"dislikes": 9,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"exampleTestcases": "{\"headers\":{\"Data\":[\"first_col\",\"second_col\"]},\"rows\":{\"Data\":[[4,2],[2,3],[3,1],[1,4]]}}",
|
|
"categoryTitle": "Database",
|
|
"contributors": [],
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": null,
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"1.3K\", \"totalSubmission\": \"2.1K\", \"totalAcceptedRaw\": 1341, \"totalSubmissionRaw\": 2111, \"acRate\": \"63.5%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Data\":[\"first_col\",\"second_col\"]},\"rows\":{\"Data\":[[4,2],[2,3],[3,1],[1,4]]}}",
|
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Data (first_col int, second_col int)\"\n ],\n \"mssql\": [\n \"Create table Data (first_col int, second_col int)\"\n ],\n \"oraclesql\": [\n \"Create table Data (first_col int, second_col int)\"\n ],\n \"database\": true\n}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Data (first_col int, second_col int)",
|
|
"Truncate table Data",
|
|
"insert into Data (first_col, second_col) values ('4', '2')",
|
|
"insert into Data (first_col, second_col) values ('2', '3')",
|
|
"insert into Data (first_col, second_col) values ('3', '1')",
|
|
"insert into Data (first_col, second_col) values ('1', '4')"
|
|
],
|
|
"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"
|
|
}
|
|
}
|
|
} |