Sales Analysis II — LeetCode 1083 Python Solution
EasyLeetCode PremiumDatabase
- Problem
- #1083
- Reading time
- 3 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n log n) (typical) |
| Space | O(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.