mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
209a59ee56
* Update and_gate.py addressing issue #8656 by calling `test_and_gate()` , ensuring that all the assertions are verified before the actual output is printed. * Update and_gate.py addressing issue #8632 |
||
---|---|---|
.. | ||
__init__.py | ||
and_gate.py | ||
nand_gate.py | ||
norgate.py | ||
not_gate.py | ||
or_gate.py | ||
quine_mc_cluskey.py | ||
README.md | ||
xnor_gate.py | ||
xor_gate.py |
Boolean Algebra
Boolean algebra is used to do arithmetic with bits of values True (1) or False (0). There are three basic operations: 'and', 'or' and 'not'.