Solución
solution.tsTypeScript
def zip_arrays(first_array: list, second_array: list) -> list:
return [[first_array[i],second_array[i]] for i in range(0,len(first_array))]0respuestas
def zip_arrays(first_array: list, second_array: list) -> list:
return [[first_array[i],second_array[i]] for i in range(0,len(first_array))]Aún no hay respuestas
¡Sé el primero en responder!
Recuerda ser amable. Estás comentando la solución de otra persona. Comparte tu perspectiva de forma constructiva y respetuosa.