9
I'm trying to get the shortest way (character possible) to obtain List 3.
List 1 and List 2 are already given to me as arguments and are the same length.
l1 = [1, 2, 3, 4, 5]
l2 = ['a', 'b', 'c', 'd', 'e']
And List 3 should look like (yes, it needs to be a list):
l3 = ['a', 1, 'b', 2, 'c', 3, 'd', 4, 'e', 5]
2Is your goal to literally output the specific list
l3 = ['a', 1, 'b', 2, 'c', 3, 'd', 4, 'e', 5]
givenl1 = [1, 2, 3, 4, 5]
andl2 = ['a', 'b', 'c', 'd', 'e']
already assigned, or is the idea thatl1
andl2
could be any two lists of the same length? – xnor – 2018-08-03T02:50:49.143