BCG Interview Question | Hashtags
Question
Given a list of tweets, determine the top 10 most used hashtags. How will you approach this problem?
in progress
0
Interview Question
4 years
2 Answers
764 views
Great Grand Master 0
Answers ( 2 )
extract all hastags using regex and make a seperate column for it. then we can traverse and use dictionary for storing the hashtag and number of times it has been used
use regular expressions to extract tweets and store them in a sorted list.
Use a pandas object to convert them into a series and use the value_counts()
method on a series.