Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Monkey solved :) solution in Clear category for Monkey Typing by DejanJovanovic
def count_words(text, words):
text = text.lower()
count = count = sum(word in text for word in words)
return count
May 13, 2016