Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Monkey Typing solution in Uncategorized category for Monkey Typing by sebastian.okseniuk
def count_words(text, words):
i=0
n=0
print(type(text))
nowe = text.lower()
for word in words:
if word in nowe:
print(word)
i = i+ 1
n = i
print(n)
return n
Dec. 2, 2015