Your question is Most Common Element Across Categories. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Facebook surfaces such as Facebook Reels and Feed may group content labels into separate categories. Given a mapping from category names to lists of item names, return the item that appears most often across all categories.
Count every occurrence, including repeated appearances within the same category. If multiple items have the same highest frequency, return the lexicographically smallest item. At least one item appears across all category lists.
Implement most_common_item(categories), where categories is a dictionary mapping strings to lists of strings. Return a single string containing the most frequent item.
def most_common_item(categories):