mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
61 lines
4.0 KiB
JSON
61 lines
4.0 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "1932",
|
|
"questionFrontendId": "1783",
|
|
"boundTopicId": null,
|
|
"title": "Grand Slam Titles",
|
|
"titleSlug": "grand-slam-titles",
|
|
"content": null,
|
|
"translatedTitle": null,
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Medium",
|
|
"likes": 95,
|
|
"dislikes": 2,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"exampleTestcases": "{\"headers\": {\"Players\": [\"player_id\", \"player_name\"], \"Championships\": [\"year\", \"Wimbledon\", \"Fr_open\", \"US_open\", \"Au_open\"]}, \"rows\": {\"Players\": [[1, \"Nadal\"], [2, \"Federer\"], [3, \"Novak\"]], \"Championships\": [[2018, 1, 1, 1, 1], [2019, 1, 1, 2, 2], [2020, 2, 1, 2, 2]]}}",
|
|
"categoryTitle": "Database",
|
|
"contributors": [],
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": null,
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"9.8K\", \"totalSubmission\": \"11K\", \"totalAcceptedRaw\": 9790, \"totalSubmissionRaw\": 10954, \"acRate\": \"89.4%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\": {\"Players\": [\"player_id\", \"player_name\"], \"Championships\": [\"year\", \"Wimbledon\", \"Fr_open\", \"US_open\", \"Au_open\"]}, \"rows\": {\"Players\": [[1, \"Nadal\"], [2, \"Federer\"], [3, \"Novak\"]], \"Championships\": [[2018, 1, 1, 1, 1], [2019, 1, 1, 2, 2], [2020, 2, 1, 2, 2]]}}",
|
|
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Players (player_id int, player_name varchar(20))\",\n \"Create table If Not Exists Championships (year int, Wimbledon int, Fr_open int, US_open int, Au_open int)\"\n ],\n \"mssql\": [\n \"Create table Players (player_id int, player_name varchar(20))\",\n \"Create table Championships (year int, Wimbledon int, Fr_open int, US_open int, Au_open int)\"\n ],\n \"oraclesql\": [\n \"Create table Players (player_id int, player_name varchar(20))\",\n \"Create table Championships (year int, Wimbledon int, Fr_open int, US_open int, Au_open int)\"\n ],\n \"database\": true\n}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Players (player_id int, player_name varchar(20))",
|
|
"Create table If Not Exists Championships (year int, Wimbledon int, Fr_open int, US_open int, Au_open int)",
|
|
"Truncate table Players",
|
|
"insert into Players (player_id, player_name) values ('1', 'Nadal')",
|
|
"insert into Players (player_id, player_name) values ('2', 'Federer')",
|
|
"insert into Players (player_id, player_name) values ('3', 'Novak')",
|
|
"Truncate table Championships",
|
|
"insert into Championships (year, Wimbledon, Fr_open, US_open, Au_open) values ('2018', '1', '1', '1', '1')",
|
|
"insert into Championships (year, Wimbledon, Fr_open, US_open, Au_open) values ('2019', '1', '1', '2', '2')",
|
|
"insert into Championships (year, Wimbledon, Fr_open, US_open, Au_open) values ('2020', '2', '1', '2', '2')"
|
|
],
|
|
"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"
|
|
}
|
|
}
|
|
} |