mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-23 01:28:26 +00:00
Update roman_numerals.py
This commit is contained in:
parent
dd13fe23b0
commit
8b10293947
|
@ -1,32 +1,11 @@
|
||||||
ROMAN = [
|
ROMAN = [
|
||||||
(1000000, "M_"),
|
(1000000, "M_"), (900000, "C_M_"), (500000, "D_"), (400000, "C_D_"),
|
||||||
(900000, "C_M_"),
|
(100000, "C_"), (90000, "X_C_"), (50000, "L_"), (40000, "X_L_"),
|
||||||
(500000, "D_"),
|
(10000, "X_"), (9000, "I_X_"), (5000, "V_"), (4000, "I_V_"),
|
||||||
(400000, "C_D_"),
|
(1000, "M"), (900, "CM"), (500, "D"), (400, "CD"),
|
||||||
(100000, "C_"),
|
(100, "C"), (90, "XC"), (50, "L"), (40, "XL"),
|
||||||
(90000, "X_C_"),
|
(10, "X"), (9, "IX"), (5, "V"), (4, "IV"), (1, "I")
|
||||||
(50000, "L_"),
|
|
||||||
(40000, "X_L_"),
|
|
||||||
(10000, "X_"),
|
|
||||||
(9000, "I_X_"),
|
|
||||||
(5000, "V_"),
|
|
||||||
(4000, "I_V_"),
|
|
||||||
(1000, "M"),
|
|
||||||
(900, "CM"),
|
|
||||||
(500, "D"),
|
|
||||||
(400, "CD"),
|
|
||||||
(100, "C"),
|
|
||||||
(90, "XC"),
|
|
||||||
(50, "L"),
|
|
||||||
(40, "XL"),
|
|
||||||
(10, "X"),
|
|
||||||
(9, "IX"),
|
|
||||||
(5, "V"),
|
|
||||||
(4, "IV"),
|
|
||||||
(1, "I"),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
def roman_to_int(roman: str) -> int:
|
def roman_to_int(roman: str) -> int:
|
||||||
"""
|
"""
|
||||||
Convert a Roman numeral to an integer, supporting Vinculum notation
|
Convert a Roman numeral to an integer, supporting Vinculum notation
|
||||||
|
@ -47,15 +26,13 @@ def roman_to_int(roman: str) -> int:
|
||||||
i, total = 0, 0
|
i, total = 0, 0
|
||||||
while i < len(roman):
|
while i < len(roman):
|
||||||
# Check for 2-character symbols first (like I_ or X_)
|
# Check for 2-character symbols first (like I_ or X_)
|
||||||
if i + 1 < len(roman) and roman[i : i + 2] in vals:
|
if i + 1 < len(roman) and roman[i:i+2] in vals:
|
||||||
total += vals[roman[i : i + 2]]
|
total += vals[roman[i:i+2]]
|
||||||
i += 2
|
i += 2
|
||||||
else:
|
else:
|
||||||
total += vals[roman[i]]
|
total += vals[roman[i]]
|
||||||
i += 1
|
i += 1
|
||||||
return total
|
return total
|
||||||
|
|
||||||
|
|
||||||
def int_to_roman(number: int) -> str:
|
def int_to_roman(number: int) -> str:
|
||||||
"""
|
"""
|
||||||
Convert an integer to a Roman numeral, supporting Vinculum notation
|
Convert an integer to a Roman numeral, supporting Vinculum notation
|
||||||
|
@ -78,9 +55,7 @@ def int_to_roman(number: int) -> str:
|
||||||
if number == 0:
|
if number == 0:
|
||||||
break
|
break
|
||||||
return "".join(result)
|
return "".join(result)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
import doctest
|
import doctest
|
||||||
|
|
||||||
doctest.testmod()
|
doctest.testmod()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user