Last active
January 11, 2024 12:25
-
-
Save gladchinda/d2b1249536fd61cd8fa7c8ae6ba86343 to your computer and use it in GitHub Desktop.
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
// These two are equivalent | |
!A && !B == !(A || B) | |
// Also these two | |
!A || !B == !(A && B) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment