Sort the Olympic Table — LeetCode 2377 Python Solution

EasyLeetCode PremiumDatabase
Problem
#2377
Reading time
2 min

Table schema

SQL
Table: Olympic +---------------+---------+ | Column Name | Type | +---------------+---------+ | country | varchar | | gold_medals | int | | silver_medals | int | | bronze_medals | int | +---------------+---------+ In SQL, country is the primary key for this table. Each row in this table shows a country name and the number of gold, silver, and bronze medals it won in the Olympic games.

Example

SQL
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| country       | varchar |
| gold_medals   | int     |
| silver_medals | int     |
| bronze_medals | int     |
+---------------+---------+
In SQL, country is the primary key for this table.
Each row in this table shows a country name and the number of gold, silver, and bronze medals it won in the Olympic games.

Python solution

Python
import duckdb
import pandas as pd

def solution(olympic: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Olympic", olympic)
    return con.execute("""SELECT *
FROM Olympic
ORDER BY 2 DESC, 3 DESC, 4 DESC, 1;""").df()

Complexity

MeasureComplexity
TimeO(n log n) (typical)
SpaceO(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2377. Sort the Olympic Table?
LeetCode 2377. Sort the Olympic Table is rated Easy on LeetCode.
What topics does LeetCode 2377. Sort the Olympic Table cover?
LeetCode 2377. Sort the Olympic Table is tagged Database on LeetCode.
Is LeetCode 2377. Sort the Olympic Table a premium problem?
Yes. LeetCode 2377. Sort the Olympic Table is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview