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]]