DeMorgan's Law

!(A && B) is the same as !A || !B
!(A || B) is the same as !A && !B

Something cool to think about.

No comments:

Post a Comment

Searching Algorithms

Linear/Sequential Search A linear/sequential search algorithm looks at each element in the array until it finds what it's looking for. ...