Time: 54 ms (43.35%), Space: 13.9 MB (49.78%) - LeetHub

This commit is contained in:
Deven
2023-01-05 23:12:25 -05:00
parent c0903c6a97
commit 5689181e4e
@@ -0,0 +1,4 @@
class Solution:
def convertTemperature(self, celsius: float) -> List[float]:
return [celsius + 273.15, # Kelvin
celsius * 1.80 + 32.00] # Fahrenheit