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.
For this problem we're expecting only a method.
Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.fun backAround(input: String): String {
return ""
}