Calculate Compressed Mean — LeetCode 2985 Python Solution

EasyLeetCode PremiumDatabase
Problem
#2985
Reading time
2 min

Table schema

SQL
Table: Orders +-------------------+------+ | Column Name | Type | +-------------------+------+ | order_id | int | | item_count | int | | order_occurrences | int | +-------------------+------+ order_id is column of unique values for this table. This table contains order_id, item_count, and order_occurrences.

Example

SQL
+-------------------+------+
| Column Name       | Type |
+-------------------+------+
| order_id          | int  |
| item_count        | int  |
| order_occurrences | int  |
+-------------------+------+
order_id is column of unique values for this table.
This table contains order_id, item_count, and order_occurrences.

Python solution

Python
import duckdb
import pandas as pd

def solution(orders: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Orders", orders)
    return con.execute("""SELECT
    ROUND(
        SUM(item_count * order_occurrences) / SUM(order_occurrences),
        2
    ) AS average_items_per_order
FROM Orders;""").df()

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2985. Calculate Compressed Mean?
LeetCode 2985. Calculate Compressed Mean is rated Easy on LeetCode.
What topics does LeetCode 2985. Calculate Compressed Mean cover?
LeetCode 2985. Calculate Compressed Mean is tagged Database on LeetCode.
Is LeetCode 2985. Calculate Compressed Mean a premium problem?
Yes. LeetCode 2985. Calculate Compressed Mean 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