roman numeral edit

This commit is contained in:
Xevion
2019-07-18 02:26:10 -05:00
parent 326aaf7250
commit 60f2a4a02f

View File

@@ -22,6 +22,3 @@ def roman(n):
n -= best n -= best
res += numerals[best] res += numerals[best]
return res return res
for i in range(2950, 35000, 13):
print('{} -> {}'.format(i, roman(i)))