๐ Bug HuntJV Java Medium+20 XP
String Equality Bug
This always returns false for matching strings.
๐ Find the bug
1
public boolean isMatch(String input) {2
String target = new String("hello");3
return input == target;4
}๐ The bug is on line 3