I'm going through exercices on CodingBat. On this page there is this mention in the solution:
// The above can be shortened to:
// return ((aSmile && bSmile) || (!aSmile && !bSmile));
// Or this very short version (think about how this is the same as the above)
// return (aSmile == bSmile);
Is there any rule that explains the short version ? How do you go from a logical AND to an equals ?