diff --git a/python/roman-numerals/roman_numerals.py b/python/roman-numerals/roman_numerals.py index a016c88..d771491 100644 --- a/python/roman-numerals/roman_numerals.py +++ b/python/roman-numerals/roman_numerals.py @@ -21,7 +21,4 @@ def roman(n): best = max(numerals.keys(), key=lambda item : 0 if item > n else item) n -= best res += numerals[best] - return res - -for i in range(2950, 35000, 13): - print('{} -> {}'.format(i, roman(i))) \ No newline at end of file + return res \ No newline at end of file