Kotlinlearncs.online LogoJava
Return to List

Solve: Repeat End

Imported By: Geoffrey Challen
/ Version: 2021.7.0

Given a non-null String and a int n, return a String made of n repetitions of the last n characters of the passed string. n will be between 0 and the length of the string, inclusive.

String repeatEnd(String input, int n) {
return ""; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: