Sales Analysis I — LeetCode 1082 Python Solution

EasyLeetCode PremiumDatabase
Problem
#1082
Reading time
3 min

Table schema

SQL
Table: Product +--------------+---------+ | Column Name | Type | +--------------+---------+ | product_id | int | | product_name | varchar | | unit_price | int | +--------------+---------+ product_id is the primary key (column with unique values) of this table. Each row of this table indicates the name and the price of each product.

Example

SQL
+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| product_id   | int     |
| product_name | varchar |
| unit_price   | int     |
+--------------+---------+
product_id is the primary key (column with unique values) of this table.
Each row of this table indicates the name and the price of each product.

Python solution

Python
import duckdb
import pandas as pd

def solution(product: pd.DataFrame, sales: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Product", product)
    con.register("Sales", sales)
    return con.execute("""SELECT seller_id
FROM Sales
GROUP BY seller_id
HAVING
    SUM(price) >= ALL(
        SELECT SUM(price)
        FROM Sales
        GROUP BY seller_id
    );""").df()

Complexity

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

Related problems

Frequently asked questions

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