New Users Daily Count — LeetCode 1107 Python Solution

MediumLeetCode PremiumDatabase
Problem
#1107
Reading time
3 min

Table schema

SQL
Table: Traffic +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | activity | enum | | activity_date | date | +---------------+---------+ This table may have duplicate rows. The activity column is an ENUM (category) type of ('login', 'logout', 'jobs', 'groups', 'homepage').

Example

SQL
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| user_id       | int     |
| activity      | enum    |
| activity_date | date    |
+---------------+---------+
This table may have duplicate rows.
The activity column is an ENUM (category) type of ('login', 'logout', 'jobs', 'groups', 'homepage').

Python solution

Python
import duckdb
import pandas as pd

def solution(traffic: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Traffic", traffic)
    return con.execute("""WITH
    T AS (
        SELECT
            user_id,
            MIN(activity_date) OVER (PARTITION BY user_id) AS login_date
        FROM Traffic
        WHERE activity = 'login'
    )
SELECT login_date, COUNT(DISTINCT user_id) AS user_count
FROM T
WHERE DATEDIFF('2019-06-30', login_date) <= 90
GROUP BY 1;""").df()

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 1107. New Users Daily Count?
LeetCode 1107. New Users Daily Count is rated Medium on LeetCode.
What topics does LeetCode 1107. New Users Daily Count cover?
LeetCode 1107. New Users Daily Count is tagged Database on LeetCode.
Is LeetCode 1107. New Users Daily Count a premium problem?
Yes. LeetCode 1107. New Users Daily Count 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