From 88c0d9e731dfd225e5cb619cd0602a4ef3fd7eb9 Mon Sep 17 00:00:00 2001 From: Rajdeep Das Date: Sun, 9 Oct 2022 16:33:32 +0530 Subject: [PATCH] Rename uniocto/roman_to_int.py to Hacktoberfest-2021/uniocto/roman_to_int.py --- {uniocto => Hacktoberfest-2021/uniocto}/roman_to_int.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename {uniocto => Hacktoberfest-2021/uniocto}/roman_to_int.py (95%) diff --git a/uniocto/roman_to_int.py b/Hacktoberfest-2021/uniocto/roman_to_int.py similarity index 95% rename from uniocto/roman_to_int.py rename to Hacktoberfest-2021/uniocto/roman_to_int.py index 072a567..b09234d 100644 --- a/uniocto/roman_to_int.py +++ b/Hacktoberfest-2021/uniocto/roman_to_int.py @@ -24,4 +24,4 @@ def romanToInt(s: str) -> int: rt+=roman_ind[s[i-1]] else: rt-=roman_ind[s[i-1]] - return rt+roman_ind[s[-1]] \ No newline at end of file + return rt+roman_ind[s[-1]]