Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using `filter` solution in Speedy category for Monkey Typing by BertrandBordage
# migrated from python 2.7
def count_words(text, words):
return len(list(filter(text.lower().count, words)))
Aug. 10, 2014
Comments: