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 W.Zalicki
def count_words(text, words):
q=0
for w in words:
if w in text.lower():
q+=1
return q
Nov. 5, 2017