Finding the Topic of Each Post — LeetCode 2199 Python Solution
HardLeetCode PremiumDatabase
- Problem
- #2199
- Reading time
- 3 min
- Source
- leetcode.com
Table schema
SQL
Table: Keywords +-------------+---------+ | Column Name | Type | +-------------+---------+ | topic_id | int | | word | varchar | +-------------+---------+ (topic_id, word) is the primary key (combination of columns with unique values) for this table. Each row of this table contains the id of a topic and a word that is used to express this topic.Example
SQL
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| topic_id | int |
| word | varchar |
+-------------+---------+
(topic_id, word) is the primary key (combination of columns with unique values) for this table.
Each row of this table contains the id of a topic and a word that is used to express this topic.
There may be more than one word to express the same topic and one word may be used to express multiple topics.Python solution
Python
import duckdb
import pandas as pd
def solution(keywords: pd.DataFrame, posts: pd.DataFrame) -> pd.DataFrame:
con = duckdb.connect()
con.register("Keywords", keywords)
con.register("Posts", posts)
return con.execute("""SELECT
post_id,
IFNULL(GROUP_CONCAT(DISTINCT topic_id), 'Ambiguous!') AS topic
FROM
Posts
LEFT JOIN Keywords ON INSTR(CONCAT(' ', content, ' '), CONCAT(' ', word, ' ')) > 0
GROUP BY post_id;""").df()Complexity
| Measure | Complexity |
|---|---|
| Time | O(n log n) (typical) |
| Space | O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 2199. Finding the Topic of Each Post?
- LeetCode 2199. Finding the Topic of Each Post is rated Hard on LeetCode.
- What topics does LeetCode 2199. Finding the Topic of Each Post cover?
- LeetCode 2199. Finding the Topic of Each Post is tagged Database on LeetCode.
- Is LeetCode 2199. Finding the Topic of Each Post a premium problem?
- Yes. LeetCode 2199. Finding the Topic of Each Post is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.