Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Monkey Typing by _Chico_
def count_words(text, words):
text = text.lower()
answer = 0
for word in words:
if word in text:
answer += 1
return answer
June 6, 2021
Comments: