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 d304184 commit 7905b8eCopy full SHA for 7905b8e
exercises/concept/temperature/.docs/hints.md
@@ -1,12 +1,12 @@
1
# Hints
2
3
-## Convert Fahrenheit to Celsius
+## 1. Convert Fahrenheit to Celsius
4
5
- Temperature in degrees Celsius is defined as: T(°C) = (T(°F) - 32) / 1.8
6
- The temperature in Fahrenheit is provided as an `Integer` and must return Celsius as a `Float`.
7
The `fromInteger` function will come in handy.
8
9
-## Convert Celsius to Fahrenheit
+## 2. Convert Celsius to Fahrenheit
10
11
- Temperature in degrees Fahrenheit is defined as: T(°F) = T(°C) × 1.8 + 32
12
- The temperature in Celcius is provided as a `Float` and must return Fahrenheit rounded up to the closest `Integer`.
0 commit comments