Market Analysis I — LeetCode 1158 Python Solution
MediumDatabase
- Problem
- #1158
- Reading time
- 3 min
- Source
- leetcode.com
Table schema
SQL
Table: Users +----------------+---------+ | Column Name | Type | +----------------+---------+ | user_id | int | | join_date | date | | favorite_brand | varchar | +----------------+---------+ user_id is the primary key (column with unique values) of this table. This table has the info of the users of an online shopping website where users can sell and buy items.Example
SQL
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| user_id | int |
| join_date | date |
| favorite_brand | varchar |
+----------------+---------+
user_id is the primary key (column with unique values) of this table.
This table has the info of the users of an online shopping website where users can sell and buy items.Python solution
Python
import duckdb
import pandas as pd
def solution(users: pd.DataFrame, orders: pd.DataFrame, items: pd.DataFrame) -> pd.DataFrame:
con = duckdb.connect()
con.register("Users", users)
con.register("Orders", orders)
con.register("Items", items)
return con.execute("""SELECT
u.user_id AS buyer_id,
u.join_date,
COUNT(order_id) AS orders_in_2019
FROM
Users AS u
LEFT JOIN Orders AS o ON u.user_id = o.buyer_id AND YEAR(order_date) = 2019
GROUP BY user_id;""").df()Complexity
| Measure | Complexity |
|---|---|
| Time | O(n log n) (typical) |
| Space | O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 1158. Market Analysis I?
- LeetCode 1158. Market Analysis I is rated Medium on LeetCode.
- What topics does LeetCode 1158. Market Analysis I cover?
- LeetCode 1158. Market Analysis I is tagged Database on LeetCode.