FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Basic-Python-Programs/RomanToInt.py at main · gitishman/Basic-Python-Programs · GitHub
gitishman
/
Basic-Python-Programs
Public
forked from
souravjain540/Basic-Python-Programs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Basic-Python-Programs
/
RomanToInt.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (21 loc) · 548 Bytes
Breadcrumbs
Basic-Python-Programs
/
RomanToInt.py
Copy path
File metadata and controls
21 lines (21 loc) · 548 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
21
val
=
input
(
"Enter your value: "
)
class
Solution
(
object
):
def
romanToInt
(
self
,
s
):
"""
:type s: str
:rtype: int
"""
roman
=
{
'I'
:
1
,
'V'
:
5
,
'X'
:
10
,
'L'
:
50
,
'C'
:
100
,
'D'
:
500
,
'M'
:
1000
,
'IV'
:
4
,
'IX'
:
9
,
'XL'
:
40
,
'XC'
:
90
,
'CD'
:
400
,
'CM'
:
900
}
i
=
0
num
=
0
while
i
<
len
(
s
):
if
i
+
1
<
len
(
s
)
and
s
[
i
:
i
+
2
]
in
roman
:
num
+=
roman
[
s
[
i
:
i
+
2
]]
i
+=
2
else
:
#print(i)
num
+=
roman
[
s
[
i
]]
i
+=
1
return
num
ob1
=
Solution
()
print
(
ob1
.
romanToInt
(
val
))
Back
|
FazBrowse Home
|
New Git URL