Given two non-null
String
s, concatenate them and return the result.
However, if the String
s are different lengths, omit chars from the front of the longer string so it is the same
length as the shorter string.
So "Hello" and "Hi" yield "loHi".
The strings may be any length.
Stuck? You may find these lessons helpful: