Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Monkey Typing by PawelLaskowski
def count_words(text: str, words: set) -> int:
ltext = text.lower()
counter = 0
for word in words:
if word in ltext:
counter+=1
return counter
Oct. 9, 2018