Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Build confidence with an intuition-first walkthrough focused on core interview patterns fundamentals.
Table: Activity
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| user_id | int |
| session_id | int |
| activity_date | date |
| activity_type | enum |
+---------------+---------+
This table may have duplicate rows.
The activity_type column is an ENUM (category) of type ('open_session', 'end_session', 'scroll_down', 'send_message').
The table shows the user activities for a social media website.
Note that each session belongs to exactly one user.
Write a solution to find the daily active user count for a period of 30 days ending 2019-07-27 inclusively. A user was active on someday if they made at least one activity on that day.
Return the result table in any order.
The result format is in the following example.
Note: Any activity from ('open_session', 'end_session', 'scroll_down', 'send_message') will be considered valid activity for a user to be considered active on a day.
Example 1:
Input: Activity table: +---------+------------+---------------+---------------+ | user_id | session_id | activity_date | activity_type | +---------+------------+---------------+---------------+ | 1 | 1 | 2019-07-20 | open_session | | 1 | 1 | 2019-07-20 | scroll_down | | 1 | 1 | 2019-07-20 | end_session | | 2 | 4 | 2019-07-20 | open_session | | 2 | 4 | 2019-07-21 | send_message | | 2 | 4 | 2019-07-21 | end_session | | 3 | 2 | 2019-07-21 | open_session | | 3 | 2 | 2019-07-21 | send_message | | 3 | 2 | 2019-07-21 | end_session | | 4 | 3 | 2019-06-25 | open_session | | 4 | 3 | 2019-06-25 | end_session | +---------+------------+---------------+---------------+ Output: +------------+--------------+ | day | active_users | +------------+--------------+ | 2019-07-20 | 2 | | 2019-07-21 | 2 | +------------+--------------+ Explanation: Note that we do not care about days with zero active users.
Problem summary: Table: Activity +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | session_id | int | | activity_date | date | | activity_type | enum | +---------------+---------+ This table may have duplicate rows. The activity_type column is an ENUM (category) of type ('open_session', 'end_session', 'scroll_down', 'send_message'). The table shows the user activities for a social media website. Note that each session belongs to exactly one user. Write a solution to find the daily active user count for a period of 30 days ending 2019-07-27 inclusively. A user was active on someday if they made at least one activity on that day. Return the result table in any order. The result format is in the following example. Note: Any activity from ('open_session', 'end_session', 'scroll_down', 'send_message') will be considered valid activity for a user to be
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: General problem-solving
{"headers":{"Activity":["user_id","session_id","activity_date","activity_type"]},"rows":{"Activity":[[1,1,"2019-07-20","open_session"],[1,1,"2019-07-20","scroll_down"],[1,1,"2019-07-20","end_session"],[2,4,"2019-07-20","open_session"],[2,4,"2019-07-21","send_message"],[2,4,"2019-07-21","end_session"],[3,2,"2019-07-21","open_session"],[3,2,"2019-07-21","send_message"],[3,2,"2019-07-21","end_session"],[4,3,"2019-06-25","open_session"],[4,3,"2019-06-25","end_session"]]}}Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// Auto-generated Java example from rust.
class Solution {
public void exampleSolution() {
}
}
// Reference (rust):
// // Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// pub fn sql_example() -> &'static str {
// r#"
// -- Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// # Write your MySQL query statement below
// SELECT activity_date AS day, COUNT(DISTINCT user_id) AS active_users
// FROM Activity
// WHERE activity_date <= '2019-07-27' AND DATEDIFF('2019-07-27', activity_date) < 30
// GROUP BY 1;
// "#
// }
// Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// Auto-generated Go example from rust.
func exampleSolution() {
}
// Reference (rust):
// // Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// pub fn sql_example() -> &'static str {
// r#"
// -- Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// # Write your MySQL query statement below
// SELECT activity_date AS day, COUNT(DISTINCT user_id) AS active_users
// FROM Activity
// WHERE activity_date <= '2019-07-27' AND DATEDIFF('2019-07-27', activity_date) < 30
// GROUP BY 1;
// "#
// }
# Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
# Auto-generated Python example from rust.
def example_solution() -> None:
return
# Reference (rust):
# // Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
# pub fn sql_example() -> &'static str {
# r#"
# -- Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
# # Write your MySQL query statement below
# SELECT activity_date AS day, COUNT(DISTINCT user_id) AS active_users
# FROM Activity
# WHERE activity_date <= '2019-07-27' AND DATEDIFF('2019-07-27', activity_date) < 30
# GROUP BY 1;
# "#
# }
// Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
pub fn sql_example() -> &'static str {
r#"
-- Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
# Write your MySQL query statement below
SELECT activity_date AS day, COUNT(DISTINCT user_id) AS active_users
FROM Activity
WHERE activity_date <= '2019-07-27' AND DATEDIFF('2019-07-27', activity_date) < 30
GROUP BY 1;
"#
}
// Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// Auto-generated TypeScript example from rust.
function exampleSolution(): void {
}
// Reference (rust):
// // Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// pub fn sql_example() -> &'static str {
// r#"
// -- Accepted solution for LeetCode #1141: User Activity for the Past 30 Days I
// # Write your MySQL query statement below
// SELECT activity_date AS day, COUNT(DISTINCT user_id) AS active_users
// FROM Activity
// WHERE activity_date <= '2019-07-27' AND DATEDIFF('2019-07-27', activity_date) < 30
// GROUP BY 1;
// "#
// }
Use this to step through a reusable interview workflow for this problem.
Two nested loops check every pair or subarray. The outer loop fixes a starting point, the inner loop extends or searches. For n elements this gives up to n²/2 operations. No extra space, but the quadratic time is prohibitive for large inputs.
Most array problems have an O(n²) brute force (nested loops) and an O(n) optimal (single pass with clever state tracking). The key is identifying what information to maintain as you scan: a running max, a prefix sum, a hash map of seen values, or two pointers.
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.