Warehouse Manager — LeetCode 1571 Python Solution

EasyLeetCode PremiumDatabase
Problem
#1571
Reading time
3 min

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

MeasureComplexity
TimeO(n log n) (typical)
SpaceO(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.

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