Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
5-liner: monkey business solution in Clear category for Monkey Typing by przemyslaw.daniel
import re
def count_words(text, words):
return len(set(re.findall('|'.join(words), text, re.IGNORECASE)))
Oct. 4, 2016
Comments: