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.
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 theEnd(
  str: String,
  front: Boolean,
): String {
  return "" 
}