Kotlinlearncs.online LogoJava
Return to List

Solve: Ends With, Starts With

Created By: Justin Maier
/ Version: 2024.9.0

Complete the boolean function endsWithStartsWith that takes two String arguments and returns true if and only if the last character of the first is the first character of the second.

If either String is null or empty, you should return false.

boolean endsWithStartsWith(String first, String second) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: