Sales Analysis II — LeetCode 1083 Python Solution

EasyLeetCode PremiumDatabase
Problem
#1083
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 buyer_id
FROM
    Sales
    JOIN Product USING (product_id)
GROUP BY 1
HAVING SUM(product_name = 'S8') > 0 AND SUM(product_name = 'iPhone') = 0;""").df()

Complexity

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

Related problems

Frequently asked questions

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