We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c87ab commit 0ce46d4Copy full SHA for 0ce46d4
Easy/Convert the Temperature.java
@@ -0,0 +1,5 @@
1
+class Solution {
2
+ public double[] convertTemperature(double celsius) {
3
+ return new double[]{/* kelvin= */celsius + 273.15, /* fahrenheit= */celsius * 1.80 + 32.00};
4
+ }
5
+}
0 commit comments