Skip to content

Instantly share code, notes, and snippets.

@sri
Last active December 16, 2015 21:35
Show Gist options
  • Save sri/db84a8f6dd44b1453c2f to your computer and use it in GitHub Desktop.
Save sri/db84a8f6dd44b1453c2f to your computer and use it in GitHub Desktop.
| X | Y | Z | (X || Y) && Z | X || (Y && Z) |
|---+---+---+---------------+---------------|
| F | F | F | | |
|---+---+---+---------------+---------------|
| F | F | T | | |
|---+---+---+---------------+---------------|
| F | T | F | | |
|---+---+---+---------------+---------------|
| F | T | T | | |
|---+---+---+---------------+---------------|
| T | F | F | | |
|---+---+---+---------------+---------------|
| T | F | T | | |
|---+---+---+---------------+---------------|
| T | T | F | | |
|---+---+---+---------------+---------------|
| T | T | T | | |
|---+---+---+---------------+---------------|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment