Warehouse Manager — LeetCode 1571 Python Solution
EasyLeetCode PremiumDatabase
- Problem
- #1571
- Reading time
- 3 min
- Source
- leetcode.com
Table schema
SQL
Table: Warehouse +--------------+---------+ | Column Name | Type | +--------------+---------+ | name | varchar | | product_id | int | | units | int | +--------------+---------+ (name, product_id) is the primary key (combination of columns with unique values) for this table. Each row of this table contains the information of the products in each warehouse.Example
SQL
+--------------+---------+
| Column Name | Type |
+--------------+---------+
| name | varchar |
| product_id | int |
| units | int |
+--------------+---------+
(name, product_id) is the primary key (combination of columns with unique values) for this table.
Each row of this table contains the information of the products in each warehouse.Python solution
Python
import duckdb
import pandas as pd
def solution(warehouse: pd.DataFrame, products: pd.DataFrame) -> pd.DataFrame:
con = duckdb.connect()
con.register("Warehouse", warehouse)
con.register("Products", products)
return con.execute("""SELECT
name AS warehouse_name,
SUM(width * length * height * units) AS volume
FROM
Warehouse
JOIN Products USING (product_id)
GROUP BY 1;""").df()Complexity
| Measure | Complexity |
|---|---|
| Time | O(n log n) (typical) |
| Space | O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 1571. Warehouse Manager?
- LeetCode 1571. Warehouse Manager is rated Easy on LeetCode.
- What topics does LeetCode 1571. Warehouse Manager cover?
- LeetCode 1571. Warehouse Manager is tagged Database on LeetCode.
- Is LeetCode 1571. Warehouse Manager a premium problem?
- Yes. LeetCode 1571. Warehouse Manager is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.