Biggest Window Between Visits — LeetCode 1709 Python Solution
MediumLeetCode PremiumDatabase
- Problem
- #1709
- Reading time
- 4 min
- Source
- leetcode.com
Table schema
SQL
Table: UserVisits +-------------+------+ | Column Name | Type | +-------------+------+ | user_id | int | | visit_date | date | +-------------+------+ This table does not have a primary key, it might contain duplicate rows. This table contains logs of the dates that users visited a certain retailer.Example
SQL
+-------------+------+
| Column Name | Type |
+-------------+------+
| user_id | int |
| visit_date | date |
+-------------+------+
This table does not have a primary key, it might contain duplicate rows.
This table contains logs of the dates that users visited a certain retailer.Python solution
Python
import duckdb
import pandas as pd
def solution(user_visits: pd.DataFrame) -> pd.DataFrame:
con = duckdb.connect()
con.register("UserVisits", user_visits)
return con.execute("""WITH
T AS (
SELECT
user_id,
DATEDIFF(
LEAD(visit_date, 1, '2021-1-1') OVER (
PARTITION BY user_id
ORDER BY visit_date
),
visit_date
) AS diff
FROM UserVisits
)
SELECT user_id, MAX(diff) AS biggest_window
FROM T
GROUP BY 1
ORDER 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 1709. Biggest Window Between Visits?
- LeetCode 1709. Biggest Window Between Visits is rated Medium on LeetCode.
- What topics does LeetCode 1709. Biggest Window Between Visits cover?
- LeetCode 1709. Biggest Window Between Visits is tagged Database on LeetCode.
- Is LeetCode 1709. Biggest Window Between Visits a premium problem?
- Yes. LeetCode 1709. Biggest Window Between Visits is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.