Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Clear category for Monkey Typing by gyahun_dash
def count_words(text, words):
bools = [w in text.lower() for w in words]
return bools.count(True)
Aug. 6, 2014
Comments: