Solución
solution.tsTypeScript
def flatten(nested_arrays: list[list[int]]) -> list[int]:
# Escribe tu solución aquí
return [j for i in nested_arrays for j in i]0respuestas
def flatten(nested_arrays: list[list[int]]) -> list[int]:
# Escribe tu solución aquí
return [j for i in nested_arrays for j in i]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.