!(A && B) is the same as !A || !B
!(A || B) is the same as !A && !B
Something cool to think about.
Subscribe to:
Post Comments (Atom)
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. ...
-
A recursive function is one that calls itself in the method body. A recursive function breaks down a problem into smaller iterative pieces...
-
Linear/Sequential Search A linear/sequential search algorithm looks at each element in the array until it finds what it's looking for. ...
-
Cohesion - a class is cohesive if it has a single, well-defined purpose. If the class has methods and instance fields that don't exactly...
No comments:
Post a Comment