Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Spot the difference! solution in Creative category for Boolean Algebra by veky
class boolean:
from operator import and_ as conjunction, or_ as disjunction, xor as exclusive, le as implication, eq as equivalence
__new__ = lambda *_: getattr(*_[::3])(*_[1:3])
Nov. 20, 2016
Comments: