Reported Posts — LeetCode 1113 Python Solution

EasyLeetCode PremiumDatabase
Problem
#1113
Reading time
2 min

Table schema

SQL
Table: Actions +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | post_id | int | | action_date | date | | action | enum | | extra | varchar | +---------------+---------+ This table may have duplicate rows. The action column is an ENUM (category) type of ('view', 'like', 'reaction', 'comment', 'report', 'share').

Example

SQL
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| user_id       | int     |
| post_id       | int     |
| action_date   | date    | 
| action        | enum    |
| extra         | varchar |
+---------------+---------+
This table may have duplicate rows.
The action column is an ENUM (category) type of ('view', 'like', 'reaction', 'comment', 'report', 'share').
The extra column has optional information about the action, such as a reason for the report or a type of reaction.

Python solution

Python
import duckdb
import pandas as pd

def solution(actions: pd.DataFrame) -> pd.DataFrame:
    con = duckdb.connect()
    con.register("Actions", actions)
    return con.execute("""SELECT extra AS report_reason, COUNT(DISTINCT post_id) AS report_count
FROM Actions
WHERE action_date = '2019-07-04' AND action = 'report'
GROUP BY 1;""").df()

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 1113. Reported Posts?
LeetCode 1113. Reported Posts is rated Easy on LeetCode.
What topics does LeetCode 1113. Reported Posts cover?
LeetCode 1113. Reported Posts is tagged Database on LeetCode.
Is LeetCode 1113. Reported Posts a premium problem?
Yes. LeetCode 1113. Reported Posts 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