Find Customers With Positive Revenue this Year — LeetCode 1821 Python Solution
EasyLeetCode PremiumDatabase
- Problem
- #1821
- Reading time
- 2 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n log n) (typical) |
| Space | O(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.