Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
boolean = compose(eval,"{2}({0},{1})".format) solution in Creative category for Boolean Algebra by flpo
from operator import (
and_ as conjunction,
or_ as disjunction,
eq as equivalence,
xor as exclusive,
le as implication)
compose = lambda g, f: lambda *args: g(f(*args))
boolean = compose(eval, "{2}({0},{1})".format)
Sept. 16, 2017