Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one-liner solution in Creative category for Monkey Typing by nakanohito_piyo
def count_words(text, words):
return sum([1 for s in words if (s.lower() in text.lower())])
June 26, 2015
Comments: