Your question is Merge Two Strings. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Tenable Vulnerability Management may combine two short alert labels into one display string. Given two strings, create an interleaved string by taking one character from the first string, then one from the second, repeating until both strings are exhausted.
Preserve the original character order within each input string. If one string is shorter, append the remaining characters from the other string after the alternating portion. The first character must always come from the first string when it is non-empty.
Implement merge_strings(first, second):
first and second.def merge_strings(first, second):