Kotlinlearncs.online LogoJava
Return to List

Solve: Repeat End

Imported By: Geoffrey Challen
/ Version: 2021.7.0

Given a 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.

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

Related Lessons

Stuck? You may find these lessons helpful: