Kotlinlearncs.online LogoJava
Return to List

Solve: Without X2

Imported By: Geoffrey Challen
/ Version: 2021.6.0

Given a non-null String, if one or both of the first 2 characters is 'x', return the string without those characters. Otherwise return it unchanged.

String withoutX2(String input) {
return ""; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: