Created
January 25, 2020 10:26
-
-
Save kettanaito/83f7df70020d6e5b678360aad7f2e778 to your computer and use it in GitHub Desktop.
Boolean: De Morgan's Laws
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
!(A && B) // is equivalent to | |
!A || !B | |
!(A || B) // is equivalent to | |
!A && !B |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment