Solve: Non Start
Imported By: Geoffrey Challen
/ Version: 2021.5.0
Given 2 String
s, return their concatenation, except omit the first char of each.
The strings will be at least length 1.
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 nonStart(
first: String,
second: String,
): String {
return ""
}