Exercise 2: Interleaving

Practice interleaving elements of two arrays.

We'll cover the following

Given two strings of length 5, create an array of length 10 such that these two input strings appear as array elements in alternating positions.

Example

input_string_1 = "ha"
input_String_2 = "he"

result = ["ha", "he", "ha", "he", "ha", "he", "ha", "he", "ha", "he"]

Try it yourself

Press + to interact
def interleaving(input_string_1, input_string_2)
result = ""
#Start your code here
return result
end