Python/boolean_algebra
Daniela Large 24f6f8c137
Added nimply gate to boolean_algebra (#10344)
* Add files via upload

* Update imply_gate.py

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

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

* Update boolean_algebra/imply_gate.py

Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com>

* Update imply_gate.py

Made changes requested

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

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

* Update imply_gate.py

* Added nimply gate

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

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

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Tianyi Zheng <tianyizheng02@gmail.com>
2023-10-13 00:29:39 -04:00
..
__init__.py Add __init__.py files in all the directories (#2503) 2020-09-28 19:42:36 +02:00
and_gate.py Update and_gate.py (#8690) 2023-05-10 21:38:52 +12:00
imply_gate.py Added imply gate to boolean algebra (#9849) 2023-10-12 11:51:06 -04:00
nand_gate.py Added Implementation of NAND, OR ,XNOR and NOT gates in python (#7596) 2022-10-25 21:53:21 +02:00
nimply_gate.py Added nimply gate to boolean_algebra (#10344) 2023-10-13 00:29:39 -04:00
nor_gate.py Rename norgate to nor_gate to keep consistency (#8968) 2023-08-16 18:21:00 -07:00
not_gate.py clean of unnecessary checks, imports, calls (#7993) 2022-11-21 00:00:27 +13:00
or_gate.py Added Implementation of NAND, OR ,XNOR and NOT gates in python (#7596) 2022-10-25 21:53:21 +02:00
quine_mc_cluskey.py Reduce the complexity of boolean_algebra/quine_mc_cluskey.py (#8604) 2023-08-15 16:10:22 -07:00
README.md Add README files 1/7 (#5754) 2021-11-04 18:49:36 +08:00
xnor_gate.py Added Implementation of NAND, OR ,XNOR and NOT gates in python (#7596) 2022-10-25 21:53:21 +02:00
xor_gate.py Add function for xor gate (#7588) 2022-10-25 21:26:53 +02: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'.