코린이의 소소한 공부노트

[LeetCode/Easy] 2469. Convert the Temperature 본문

코딩테스트 풀이/JAVA

[LeetCode/Easy] 2469. Convert the Temperature

무지맘 2023. 5. 4. 17:25

1. Input

1) double celsius

 

2. Output

1) Celsius로 표현된 온도를 Kelvin온도와 Fahrenheit온도로 변환해서 차례대로 담은 배열은 반환

- Kelvin = Celsius + 273.15

- Fahrenheit = Celsius * 1.80 + 32.00

 

3. Constraint

1) 0 <= celsius <= 1000

2) 실제 답과의 오차범위는 10^(-5) 이하여야 한다.

 

4. Example

Input: celsius = 36.50 => Output: [309.65000,97.70000]

 

5. Code

1) 첫 코드(2023/05/04)

class Solution {
    public double[] convertTemperature(double celsius) {
        return new double[] {celsius+273.15, celsius*1.8+32};
    }
}