Find Customers With Positive Revenue this Year — LeetCode 1821 Python Solution

EasyLeetCode PremiumDatabase
Problem
#1821
Reading time
2 min

Table schema

SQL
Table: Customers +--------------+------+ | Column Name | Type | +--------------+------+ | customer_id | int | | year | int | | revenue | int | +--------------+------+ (customer_id, year) is the primary key (combination of columns with unique values) for this table. This table contains the customer ID and the revenue of customers in different years.

Example

SQL
+--------------+------+
| Column Name  | Type |
+--------------+------+
| customer_id  | int  |
| year         | int  |
| revenue      | int  |
+--------------+------+
(customer_id, year) is the primary key (combination of columns with unique values) for this table.
This table contains the customer ID and the revenue of customers in different years.
Note that this revenue can be negative.

Python solution

Python
import duckdb
import pandas as pd

def solution(customers: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Customers", customers)
    return con.execute("""SELECT
    customer_id
FROM Customers
WHERE year = '2021' AND revenue > 0;""").df()

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 1821. Find Customers With Positive Revenue this Year?
LeetCode 1821. Find Customers With Positive Revenue this Year is rated Easy on LeetCode.
What topics does LeetCode 1821. Find Customers With Positive Revenue this Year cover?
LeetCode 1821. Find Customers With Positive Revenue this Year is tagged Database on LeetCode.
Is LeetCode 1821. Find Customers With Positive Revenue this Year a premium problem?
Yes. LeetCode 1821. Find Customers With Positive Revenue this Year 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