1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode/originData/[no content]shortest-distance-in-a-plane.json

63 lines
3.3 KiB
JSON
Raw Normal View History

2022-03-27 18:35:17 +08:00
{
"data": {
"question": {
"questionId": "612",
"questionFrontendId": "612",
"boundTopicId": null,
"title": "Shortest Distance in a Plane",
"titleSlug": "shortest-distance-in-a-plane",
"content": null,
"translatedTitle": null,
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
2023-12-09 18:42:21 +08:00
"likes": 214,
"dislikes": 70,
2022-03-27 18:35:17 +08:00
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "{\"headers\":{\"Point2D\":[\"x\",\"y\"]},\"rows\":{\"Point2D\":[[-1,-1],[0,0],[-1,-2]]}}",
"categoryTitle": "Database",
"contributors": [],
"topicTags": [
{
"name": "Database",
"slug": "database",
"translatedName": null,
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
2023-12-09 19:57:46 +08:00
"stats": "{\"totalAccepted\": \"38.8K\", \"totalSubmission\": \"62.7K\", \"totalAcceptedRaw\": 38825, \"totalSubmissionRaw\": 62735, \"acRate\": \"61.9%\"}",
2022-03-27 18:35:17 +08:00
"hints": [],
"solution": {
"id": "178",
2023-12-09 18:42:21 +08:00
"canSeeDetail": false,
"paidOnly": true,
2022-03-27 18:35:17 +08:00
"hasVideoSolution": false,
"paidOnlyVideo": true,
"__typename": "ArticleNode"
},
"status": null,
"sampleTestCase": "{\"headers\":{\"Point2D\":[\"x\",\"y\"]},\"rows\":{\"Point2D\":[[-1,-1],[0,0],[-1,-2]]}}",
2023-12-09 18:42:21 +08:00
"metaData": "{\"mysql\": [\"Create Table If Not Exists Point2D (x int not null, y int not null)\"], \"mssql\": [\"Create Table Point2D (x int not null, y int not null)\"], \"oraclesql\": [\"Create Table Point2D (x int not null, y int not null)\"], \"database\": true, \"name\": \"shortest_distance\", \"pythondata\": [\"Point2D = pd.DataFrame([], columns=['x', 'y']).astype({'x':'Int64', 'y':'Int64'})\"], \"postgresql\": [\"\\nCreate Table If Not Exists Point2D (x int not null, y int not null)\"], \"database_schema\": {\"Point2D\": {\"x\": \"INT\", \"y\": \"INT\"}}}",
2022-03-27 18:35:17 +08:00
"judgerAvailable": true,
"judgeType": "large",
"mysqlSchemas": [
"Create Table If Not Exists Point2D (x int not null, y int not null)",
"Truncate table Point2D",
"insert into Point2D (x, y) values ('-1', '-1')",
"insert into Point2D (x, y) values ('0', '0')",
"insert into Point2D (x, y) values ('-1', '-2')"
],
"enableRunCode": true,
"enableTestMode": false,
"enableDebugger": false,
2023-12-09 18:42:21 +08:00
"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>\"], \"pythondata\": [\"Pandas\", \"<p>Python 3.10 with Pandas 2.0.2 and NumPy 1.25.0</p>\"], \"postgresql\": [\"PostgreSQL\", \"<p>PostgreSQL 16</p>\"]}",
2022-03-27 18:35:17 +08:00
"libraryUrl": null,
"adminUrl": null,
"challengeQuestion": null,
"__typename": "QuestionNode"
}
}
}