Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created February 8, 2019 19:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/6447b70f92deab8e9dcc30d575cb8da8 to your computer and use it in GitHub Desktop.
Save taniarascia/6447b70f92deab8e9dcc30d575cb8da8 to your computer and use it in GitHub Desktop.
DeMorgans Theorum
(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