FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms-python/string/roman_to_int.py at master · izanbf1803/algorithms-python · GitHub
izanbf1803
/
algorithms-python
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms-python
/
string
/
roman_to_int.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (16 loc) · 504 Bytes
Breadcrumbs
algorithms-python
/
string
/
roman_to_int.py
Copy path
File metadata and controls
20 lines (16 loc) · 504 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
"""
def
roman_to_int
(
s
:
"str"
)
->
"int"
:
number
=
0
roman
=
{
'M'
:
1000
,
'D'
:
500
,
'C'
:
100
,
'L'
:
50
,
'X'
:
10
,
'V'
:
5
,
'I'
:
1
}
for
i
in
range
(
len
(
s
)
-
1
):
if
roman
[
s
[
i
]]
<
roman
[
s
[
i
+
1
]]:
number
-=
roman
[
s
[
i
]]
else
:
number
+=
roman
[
s
[
i
]]
return
number
+
roman
[
s
[
-
1
]]
if
__name__
==
"__main__"
:
roman
=
"DCXXI"
print
(
roman_to_int
(
roman
))
Back
|
FazBrowse Home
|
New Git URL