Kotlinlearncs.online LogoJava
Return to List

Solve: Make ABBA

Imported By: Geoffrey Challen
/ Version: 2021.5.0

Given two Strings, a and b, return the result of putting them together in the order abba: "Hi" and "Bye" returns "HiByeByeHi".

fun makeAbba(
a: String,
b: String,
): String {
return "" // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: