From 9174106ff389654cc252ec991524d28829b8bfa5 Mon Sep 17 00:00:00 2001 From: Sandeep Pal Date: Mon, 9 Jan 2023 22:34:32 +0530 Subject: [PATCH] Update 013_Roman_To_Integer.py Co-Authored-By: Ajeet hundal <118430042+ajeethundal@users.noreply.github.com> Co-Authored-By: Pankaj Jajra <74137365+pankajjajra@users.noreply.github.com> --- 013_Roman_To_Integer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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