Most Active User
Medium📝 Description
Find the user who sent the most messages.
Input Format
[ {"sender": "Alice", "message": "Hi"}, {"sender": "Bob", "message": "Hello"}, {"sender": "Alice", "message": "Hey"} ]
Output Format
"Alice"
Constraints
Number of messages ≤ 10^5
🔍 Sample Input
[ {"sender": "Alice", "message": "Hi"}, {"sender": "Bob", "message": "Hello"}, {"sender": "Alice", "message": "Hey"} ]
✅ Sample Output
"Alice"
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run