Move roman bits

This commit is contained in:
2023-10-24 15:48:15 -04:00
parent ffb16efcdc
commit 8cc2e18965
4 changed files with 72 additions and 76 deletions
-12
View File
@@ -19,18 +19,6 @@ def test_find_sqrt_ish(n: int, expected: int):
assert stuff.find_sqrt_ish(n) == expected
@pytest.mark.parametrize(
("n", "expected"),
[
(3, "III"),
(58, "LVIII"),
(1994, "MCMXCIV"),
],
)
def test_int_to_roman(n: int, expected: str):
assert stuff.Roman.i2r(n) == expected
@pytest.mark.parametrize(
("ops", "expected"),
[