Solución
solution.tsTypeScript
def intercalate_arrays(array_a: list, array_b: list) -> list:
# Escribe tu solución aquí
from itertools import zip_longest
result=[]
for a,b in zip_longest(array_a,array_b):
if a is not None:
result.append(a)
if b is not None:
result.append(b)
return result
# No modificar: necesario para evaluar el resultado.
exports = intercalate_arrays0respuestas