Python/boolean_algebra
RenatoLopes771 9af2eef9b3
Improve Quine–McCluskey algorithm (#4935)
* Syntax improvements (I hope) to boolean algebra

* Reverted certain index variables to i

* remove extra line on decimal_to_binary

* Update quine_mc_cluskey.py

Co-authored-by: John Law <johnlaw.po@gmail.com>
2021-12-16 17:28:31 +08:00
..
__init__.py Add __init__.py files in all the directories (#2503) 2020-09-28 19:42:36 +02:00
quine_mc_cluskey.py Improve Quine–McCluskey algorithm (#4935) 2021-12-16 17:28:31 +08:00
README.md Add README files 1/7 (#5754) 2021-11-04 18:49:36 +08:00

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'.