Create a function to bridge shuffle two lists. To bridge shuffle, you interleave the elements from both lists in an alternating fashion, like so:
List 1 = ["A", "A", "A"]
List 2 = ["B", "B", "B"]
Shuffled List = ["A", "B", "A", "B", "A", "B"]
This can still work with two lists of uneven length. We simply tack on the extra elements from the longer list, like so:
List 1 = ["C", "C", "C", "C"]
List 2 = ["D"]
Shuffled List = ["C", "D", "C", "C", "C"]
Create a function that takes in two lists and returns the bridge-shuffled list.
bridge_shuffle(["A", "A", "A"], ["B", "B", "B"]) ➞ ["A", "B", "A", "B", "A", "B"]
bridge_shuffle(["C", "C", "C", "C"], ["D"]) ➞ ["C", "D", "C", "C", "C"]
bridge_shuffle([1, 3, 5, 7], [2, 4, 6]) ➞ [1, 2, 3, 4, 5, 6, 7]