+ 3
Write a function that combines three lists by alternatingly taking elements.
For example:--given the three lists [a, b, c] [1, 2, 3] and [x, y, z] function should return [a1x, 2by, c3z]
0 Respuestas
For example:--given the three lists [a, b, c] [1, 2, 3] and [x, y, z] function should return [a1x, 2by, c3z]