Skip to content

Instantly share code, notes, and snippets.

@mtomwing
Created January 31, 2014 20:47
Show Gist options
  • Save mtomwing/8742797 to your computer and use it in GitHub Desktop.
Save mtomwing/8742797 to your computer and use it in GitHub Desktop.
+---+---+----+----+---------+----------+----------------+-----------------------------+
| H | G | ~H | ~G | (H * G) | (G * ~H) | (~G + (H * G)) | ((G * ~H) * (~G + (H * G))) |
+---+---+----+----+---------+----------+----------------+-----------------------------+
| T | T | F | F | T | F | T | F |
| T | F | F | T | F | F | T | F |
| F | T | T | F | F | T | F | F |
| F | F | T | T | F | F | T | F |
+---+---+----+----+---------+----------+----------------+-----------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment