Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in 3rd party category for Popular Words by Murasakinoshikabane
import numpy as np
def popular_words(text: str, words: list) -> dict:
values=np.zeros(len(words))
list=text.lower().split()
for k in range(len(words)):
values[k]=list.count(words[k])
return dict(zip(words,values))
if __name__ == '__main__':
print("Example:")
print(popular_words('''
When I was One
I had just begun
When I was Two
I was nearly new
''', ['i', 'was', 'three', 'near']))
# These "asserts" are used for self-checking and not for an auto-testing
assert popular_words('''
When I was One
I had just begun
When I was Two
I was nearly new
''', ['i', 'was', 'three', 'near']) == {
'i': 4,
'was': 3,
'three': 0,
'near': 0
}
print("Coding complete? Click 'Check' to earn cool rewards!")
Feb. 23, 2019