Created
February 8, 2019 19:25
-
-
Save taniarascia/6447b70f92deab8e9dcc30d575cb8da8 to your computer and use it in GitHub Desktop.
DeMorgans Theorum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(this == that || these == those) is (this != that && these != those) | |
!(a && b) == (!a || !b) | |
!(a || b) == (!a && !b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment