Product Sales Analysis IV — LeetCode 2324 Python Solution

MediumLeetCode PremiumDatabase
Problem
#2324
Reading time
4 min

Table schema

SQL
Table: Sales +-------------+-------+ | Column Name | Type | +-------------+-------+ | sale_id | int | | product_id | int | | user_id | int | | quantity | int | +-------------+-------+ sale_id contains unique values. product_id is a foreign key (reference column) to Product table.

Example

SQL
+-------------+-------+
| Column Name | Type  |
+-------------+-------+
| sale_id     | int   |
| product_id  | int   |
| user_id     | int   |
| quantity    | int   |
+-------------+-------+
sale_id contains unique values.
product_id is a foreign key (reference column) to Product table.
Each row of this table shows the ID of the product and the quantity purchased by a user.

Python solution

Python
import duckdb
import pandas as pd

def solution(sales: pd.DataFrame, product: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Sales", sales)
    con.register("Product", product)
    return con.execute("""WITH
    T AS (
        SELECT
            user_id,
            product_id,
            RANK() OVER (
                PARTITION BY user_id
                ORDER BY SUM(quantity * price) DESC
            ) AS rk
        FROM
            Sales
            JOIN Product USING (product_id)
        GROUP BY 1, 2
    )
SELECT user_id, product_id
FROM T
WHERE rk = 1;""").df()

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2324. Product Sales Analysis IV?
LeetCode 2324. Product Sales Analysis IV is rated Medium on LeetCode.
What topics does LeetCode 2324. Product Sales Analysis IV cover?
LeetCode 2324. Product Sales Analysis IV is tagged Database on LeetCode.
Is LeetCode 2324. Product Sales Analysis IV a premium problem?
Yes. LeetCode 2324. Product Sales Analysis IV 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