(Python) I have 2 lists and want to merge them as follows.
a = [2,5,1]
b = [4,2,2]
Combine lists and the expected output should be: [2,5,1,4,2,2]
(Python) I have 2 lists and want to merge them as follows.
a = [2,5,1]
b = [4,2,2]
Combine lists and the expected output should be: [2,5,1,4,2,2]