Solución
solution.tsTypeScript
def celsius_to_fahrenheit(celsius: float) -> float:
# Escribe tu solución aquí
fahrenheit = (celsius * (9/5)) + 32
return round(fahrenheit, 2)0respuestas
def celsius_to_fahrenheit(celsius: float) -> float:
# Escribe tu solución aquí
fahrenheit = (celsius * (9/5)) + 32
return round(fahrenheit, 2)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.