Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
4th solution in Creative category for Monkey Typing by gyahun_dash
import functools as ft, operator as op
def count_words(text, words):
return op.countOf(map(ft.partial(op.contains, text.lower()), words), True)
Aug. 6, 2014
Comments: