Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Popular Words by mikra
def popular_words(text: str, words: list) -> dict:
return {word: text.lower().split().count(word) for word in words}
April 7, 2019
Comments: