Algorithms/boolean_algebra
Ahmad Alharbi d16cac6e4f
feat: Add recursive implication function for lists (#12855)
* feat: Add recursive implication function for lists

* Update imply_gate.py

* Update imply_gate.py

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: Maxim Smolskiy <mithridatus@mail.ru>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2025-08-24 15:08:52 +03:00
..
README.md Add README files 1/7 (#5754) 2021-11-04 18:49:36 +08:00
__init__.py Add __init__.py files in all the directories (#2503) 2020-09-28 19:42:36 +02:00
and_gate.py Add N Input AND Gate (#12717) 2025-05-10 14:47:22 +03:00
imply_gate.py feat: Add recursive implication function for lists (#12855) 2025-08-24 15:08:52 +03:00
karnaugh_map_simplification.py Create karnaugh_map_simplification.py (#11056) 2023-10-29 22:20:57 +01:00
multiplexer.py Create multiplexer.py (#11064) 2023-10-29 08:42:32 +01:00
nand_gate.py Optimize and_gate and nand_gate (#10591) 2023-10-17 01:17:49 +02:00
nimply_gate.py Converted tests into doctests (#10572) 2023-10-16 03:21:43 -04:00
nor_gate.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
not_gate.py Converted tests into doctests (#10572) 2023-10-16 03:21:43 -04:00
or_gate.py Converted tests into doctests (#10572) 2023-10-16 03:21:43 -04:00
quine_mc_cluskey.py Reduce the complexity of boolean_algebra/quine_mc_cluskey.py (#8604) 2023-08-15 16:10:22 -07:00
xnor_gate.py Converted tests into doctests (#10572) 2023-10-16 03:21:43 -04:00
xor_gate.py Converted tests into doctests (#10572) 2023-10-16 03:21:43 -04:00

README.md

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