forked from course-work/week1
stuff to do
This commit is contained in:
18
03-roman-numerals/roman.py
Normal file
18
03-roman-numerals/roman.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Use this function to get and return all the prime numbers below the input number
|
||||
|
||||
def to_roman(num):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
assert to_roman(11) == "XI", "11 should return XI"
|
||||
assert to_roman(60) == "LX", "60 should return LX"
|
||||
assert to_roman(78) == "LXXVIII", "78 should return LXXVIII"
|
||||
assert to_roman(4) == "IV", "4 should return IV"
|
||||
assert to_roman(99) == "XCIX", "99 should return XCIX"
|
||||
|
||||
# Add your own assert tests below
|
Reference in New Issue
Block a user