stuff to do

This commit is contained in:
2016-01-03 11:25:02 -05:00
commit bc46c80b02
11 changed files with 219 additions and 0 deletions

View 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