Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Nice and Simple solution in Clear category for Monkey Typing by aussio
def count_words(text, words):
count = 0
for word in words:
if word in text.lower():
count += 1
return count
March 4, 2015
Comments: