Skip to content

Commit db1650b

Browse files
Merge pull request #1 from Pal-Sandeep/Roman-to-integer
Update 013_Roman_To_Integer.py
2 parents 7ff12d9 + 9174106 commit db1650b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

013_Roman_To_Integer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#convert Roman to Integer
12
class Solution:
23
# @param {string} s
34
# @return {integer}
@@ -14,4 +15,3 @@ def romanToInt(self, s):
1415
result+=roman[s[-1]]
1516

1617
return result
17-

0 commit comments

Comments
 (0)