1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-07 00:11:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -6,13 +6,13 @@
"boundTopicId": null,
"title": "Top Travellers",
"titleSlug": "top-travellers",
"content": "<p>Table: <code>Users</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| name | varchar |\n+---------------+---------+\nid is the primary key for this table.\nname is the name of the user.\n</pre>\n\n<p>&nbsp;</p>\n\n<p>Table: <code>Rides</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| user_id | int |\n| distance | int |\n+---------------+---------+\nid is the primary key for this table.\nuser_id is the id of the user who traveled the distance &quot;distance&quot;.\n</pre>\n\n<p>&nbsp;</p>\n\n<p>Write an SQL query to report the distance traveled by each user.</p>\n\n<p>Return the result table ordered by <code>travelled_distance</code> in <strong>descending order</strong>, if two or more users traveled the same distance, order them by their <code>name</code> in <strong>ascending order</strong>.</p>\n\n<p>The query result format is in the following example.</p>\n\n<p>&nbsp;</p>\n<p><strong>Example 1:</strong></p>\n\n<pre>\n<strong>Input:</strong> \nUsers table:\n+------+-----------+\n| id | name |\n+------+-----------+\n| 1 | Alice |\n| 2 | Bob |\n| 3 | Alex |\n| 4 | Donald |\n| 7 | Lee |\n| 13 | Jonathan |\n| 19 | Elvis |\n+------+-----------+\nRides table:\n+------+----------+----------+\n| id | user_id | distance |\n+------+----------+----------+\n| 1 | 1 | 120 |\n| 2 | 2 | 317 |\n| 3 | 3 | 222 |\n| 4 | 7 | 100 |\n| 5 | 13 | 312 |\n| 6 | 19 | 50 |\n| 7 | 7 | 120 |\n| 8 | 19 | 400 |\n| 9 | 7 | 230 |\n+------+----------+----------+\n<strong>Output:</strong> \n+----------+--------------------+\n| name | travelled_distance |\n+----------+--------------------+\n| Elvis | 450 |\n| Lee | 450 |\n| Bob | 317 |\n| Jonathan | 312 |\n| Alex | 222 |\n| Alice | 120 |\n| Donald | 0 |\n+----------+--------------------+\n<strong>Explanation:</strong> \nElvis and Lee traveled 450 miles, Elvis is the top traveler as his name is alphabetically smaller than Lee.\nBob, Jonathan, Alex, and Alice have only one ride and we just order them by the total distances of the ride.\nDonald did not have any rides, the distance traveled by him is 0.\n</pre>\n",
"content": "<p>Table: <code>Users</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| name | varchar |\n+---------------+---------+\nid is the column with unique values for this table.\nname is the name of the user.\n</pre>\n\n<p>&nbsp;</p>\n\n<p>Table: <code>Rides</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| user_id | int |\n| distance | int |\n+---------------+---------+\nid is the column with unique values for this table.\nuser_id is the id of the user who traveled the distance &quot;distance&quot;.\n</pre>\n\n<p>&nbsp;</p>\n\n<p>Write a solution&nbsp;to report the distance traveled by each user.</p>\n\n<p>Return the result table ordered by <code>travelled_distance</code> in <strong>descending order</strong>, if two or more users traveled the same distance, order them by their <code>name</code> in <strong>ascending order</strong>.</p>\n\n<p>The&nbsp;result format is in the following example.</p>\n\n<p>&nbsp;</p>\n<p><strong class=\"example\">Example 1:</strong></p>\n\n<pre>\n<strong>Input:</strong> \nUsers table:\n+------+-----------+\n| id | name |\n+------+-----------+\n| 1 | Alice |\n| 2 | Bob |\n| 3 | Alex |\n| 4 | Donald |\n| 7 | Lee |\n| 13 | Jonathan |\n| 19 | Elvis |\n+------+-----------+\nRides table:\n+------+----------+----------+\n| id | user_id | distance |\n+------+----------+----------+\n| 1 | 1 | 120 |\n| 2 | 2 | 317 |\n| 3 | 3 | 222 |\n| 4 | 7 | 100 |\n| 5 | 13 | 312 |\n| 6 | 19 | 50 |\n| 7 | 7 | 120 |\n| 8 | 19 | 400 |\n| 9 | 7 | 230 |\n+------+----------+----------+\n<strong>Output:</strong> \n+----------+--------------------+\n| name | travelled_distance |\n+----------+--------------------+\n| Elvis | 450 |\n| Lee | 450 |\n| Bob | 317 |\n| Jonathan | 312 |\n| Alex | 222 |\n| Alice | 120 |\n| Donald | 0 |\n+----------+--------------------+\n<strong>Explanation:</strong> \nElvis and Lee traveled 450 miles, Elvis is the top traveler as his name is alphabetically smaller than Lee.\nBob, Jonathan, Alex, and Alice have only one ride and we just order them by the total distances of the ride.\nDonald did not have any rides, the distance traveled by him is 0.\n</pre>\n",
"translatedTitle": null,
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 133,
"dislikes": 11,
"likes": 595,
"dislikes": 60,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "{\"headers\":{\"Users\":[\"id\",\"name\"],\"Rides\":[\"id\",\"user_id\",\"distance\"]},\"rows\":{\"Users\":[[1,\"Alice\"],[2,\"Bob\"],[3,\"Alex\"],[4,\"Donald\"],[7,\"Lee\"],[13,\"Jonathan\"],[19,\"Elvis\"]],\"Rides\":[[1,1,120],[2,2,317],[3,3,222],[4,7,100],[5,13,312],[6,19,50],[7,7,120],[8,19,400],[9,7,230]]}}",
@@ -45,14 +45,33 @@
"langSlug": "oraclesql",
"code": "/* Write your PL/SQL query statement below */\n",
"__typename": "CodeSnippetNode"
},
{
"lang": "Pandas",
"langSlug": "pythondata",
"code": "import pandas as pd\n\ndef top_travellers(users: pd.DataFrame, rides: pd.DataFrame) -> pd.DataFrame:\n ",
"__typename": "CodeSnippetNode"
},
{
"lang": "PostgreSQL",
"langSlug": "postgresql",
"code": "-- Write your PostgreSQL query statement below\n",
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"27.7K\", \"totalSubmission\": \"33.1K\", \"totalAcceptedRaw\": 27658, \"totalSubmissionRaw\": 33125, \"acRate\": \"83.5%\"}",
"stats": "{\"totalAccepted\": \"103.9K\", \"totalSubmission\": \"177.9K\", \"totalAcceptedRaw\": 103916, \"totalSubmissionRaw\": 177894, \"acRate\": \"58.4%\"}",
"hints": [],
"solution": null,
"solution": {
"id": "2002",
"canSeeDetail": true,
"paidOnly": false,
"hasVideoSolution": false,
"paidOnlyVideo": true,
"__typename": "ArticleNode"
},
"status": null,
"sampleTestCase": "{\"headers\":{\"Users\":[\"id\",\"name\"],\"Rides\":[\"id\",\"user_id\",\"distance\"]},\"rows\":{\"Users\":[[1,\"Alice\"],[2,\"Bob\"],[3,\"Alex\"],[4,\"Donald\"],[7,\"Lee\"],[13,\"Jonathan\"],[19,\"Elvis\"]],\"Rides\":[[1,1,120],[2,2,317],[3,3,222],[4,7,100],[5,13,312],[6,19,50],[7,7,120],[8,19,400],[9,7,230]]}}",
"metaData": "{\n \"mysql\": [\n \"Create Table If Not Exists Users (id int, name varchar(30))\",\n \"Create Table If Not Exists Rides (id int, user_id int, distance int)\"\n ],\n \"mssql\": [\n \"Create Table Users (id int, name varchar(30))\",\n \"Create Table Rides (id int, user_id int, distance int)\"\n ],\n \"oraclesql\": [\n \"Create Table Users (id int, name varchar(30))\",\n \"Create Table Rides (id int, user_id int, distance int)\"\n ],\n \"database\": true\n}",
"metaData": "{\"mysql\": [\"Create Table If Not Exists Users (id int, name varchar(30))\", \"Create Table If Not Exists Rides (id int, user_id int, distance int)\"], \"mssql\": [\"Create Table Users (id int, name varchar(30))\", \"Create Table Rides (id int, user_id int, distance int)\"], \"oraclesql\": [\"Create Table Users (id int, name varchar(30))\", \"Create Table Rides (id int, user_id int, distance int)\"], \"database\": true, \"name\": \"top_travellers\", \"pythondata\": [\"Users = pd.DataFrame([], columns=['id', 'name']).astype({'id':'Int64', 'name':'object'})\", \"Rides = pd.DataFrame([], columns=['id', 'user_id', 'distance']).astype({'id':'Int64', 'user_id':'Int64', 'distance':'Int64'})\"], \"postgresql\": [\"\\nCreate Table If Not Exists Users (id int, name varchar(30))\\n\", \"Create Table If Not Exists Rides (id int, user_id int, distance int)\"], \"database_schema\": {\"Users\": {\"id\": \"INT\", \"name\": \"VARCHAR(30)\"}, \"Rides\": {\"id\": \"INT\", \"user_id\": \"INT\", \"distance\": \"INT\"}}}",
"judgerAvailable": true,
"judgeType": "large",
"mysqlSchemas": [
@@ -80,7 +99,7 @@
"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>\"]}",
"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>\"]}",
"libraryUrl": null,
"adminUrl": null,
"challengeQuestion": null,