Update roman_numerals.py

This commit is contained in:
lighting9999 2025-02-10 16:33:21 +08:00 committed by GitHub
parent 99a081bc3c
commit bcfd98cbe4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,6 +62,6 @@ def int_to_roman(number: int) -> str:
break break
return "".join(result) return "".join(result)
if __name__ == "__main__": if __name__ == "__main__":
import doctest import doctest
doctest.testmod() doctest.testmod()