Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Composition of Functions solution in Creative category for First Word by flpo
from re import compile
from operator import methodcaller
compose = lambda g, f: lambda x: g(f(x))
first_word = compose(methodcaller('group'), compile(r"[\w']+").search)
Nov. 14, 2017
Comments: