seed: curriculum content

This commit is contained in:
2026-05-07 14:32:44 +00:00
parent 9258534803
commit ec76f4f56b
100 changed files with 2846 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
from solution import f_to_c
def test_freezing():
assert f_to_c(32) == "32.0°F = 0.0°C"
def test_boiling():
assert f_to_c(212) == "212.0°F = 100.0°C"
def test_body_temp():
assert f_to_c(98.6) == "98.6°F = 37.0°C"
def test_zero_fahrenheit():
assert f_to_c(0) == "0.0°F = -17.8°C"