Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Composition of Functions solution in Creative category for Binary Count by flpo
from operator import methodcaller
compose = lambda g, f: lambda x: g(f(x))
checkio = compose(methodcaller('count', '1'), bin)
Sept. 25, 2017
Comments: