Solución
solution.tsTypeScript
def celsius_to_fahrenheit(temps: list) -> list:
return list(map(lambda x: x*9/5 + 32, temps))
0respuestas
def celsius_to_fahrenheit(temps: list) -> list:
return list(map(lambda x: x*9/5 + 32, temps))
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.