Given two String
s, concatenate them and return the result.
However, if the concatenation creates a double character where the String
s are joined, then omit one of the
characters. So "abc" and "cat" yields "abcat", not "abccat".
Stuck? You may find these lessons helpful: