diff --git a/013_Roman_To_Integer.py b/013_Roman_To_Integer.py index 4c8d72a..f65b778 100644 --- a/013_Roman_To_Integer.py +++ b/013_Roman_To_Integer.py @@ -1,3 +1,4 @@ +#convert Roman to Integer class Solution: # @param {string} s # @return {integer} @@ -14,4 +15,3 @@ def romanToInt(self, s): result+=roman[s[-1]] return result - \ No newline at end of file