Kotlinlearncs.online LogoJava
Return to List

Solve: The End

Imported By: Geoffrey Challen
/ Version: 2021.5.0

Given a String, return a string length 1 from its front, unless front is false, in which case return a String length 1 from its back. The string will be non-empty.

fun theEnd(
str: String,
front: Boolean,
): String {
return "" // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: