Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Composition of Functions solution in Creative category for Backward String by flpo
compose = lambda g, f: lambda x: g(f(x))
backward_string = compose(''.join, reversed)
Feb. 29, 2020
Comments: