Return true when the two words are exactly the same, including capital letters. Strings are compared with .equals, not with == — that is the point of this one.
boolean same(String a, String b)
Examples
There are also 3 hidden tests you can't see. Solve the problem, not the examples.