Return true when the two words are the same apart from capital letters, so "Java" and "JAVA" both count as matching "java".
boolean sameIgnoringCase(String a, String b)
Examples
There are also 3 hidden tests you can't see. Solve the problem, not the examples.