Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Monkey typing solution in Clear category for Monkey Typing by CyrylWilczek
def count_words(text, words):
text = text.lower()
answer = 0
for word in words:
if word in text:
answer += 1
return answer
Dec. 20, 2017