Kotlinlearncs.online LogoJava
Return to List

Solve: Back Around

Imported By: Geoffrey Challen
/ Version: 2021.4.0

Given a String, take the last char and return a new String with the last character added at the front and back, so "cat" yields "tcatt". The original string will be length 1 or more.

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

Related Lessons

Stuck? You may find these lessons helpful: