Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
find_message = str('_').join(('find', 'message')) solution in Creative category for Secret Message by flpo
from functools import partial, reduce
find, message, str = partial(filter, str.isupper), ''.join, type('str', (str,), dict(
join=staticmethod(lambda fs: partial(reduce, (lambda x, f: eval(f)(x)), fs))
))
find_message = str('_').join(('find', 'message'))
Sept. 8, 2017
Comments: