Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python Roman to Integer

class Solution:
    def romanToInt(self, s):
 
        values = {'I': 1, 'V': 5, 'X': 10, 'L' : 50, 'C' : 100, 'D' : 500, 'M' : 1000}   
        result = 0
        for i in range(len(s)):
            if i + 1 < len(s) and values[s[i]] < values[s[i + 1]] : # if current item is not the last item on the string
                                                                    # and current item's value is smaller than next item's value 
                result = result - values[s[i]]                      # then subtract current item's value from result
            else:
                result = result + values[s[i]]                      # otherwise add current item's value to result
        return result

Task = Solution()
print(Task.romanToInt("III"))
print(Task.romanToInt("LVIII"))
print(Task.romanToInt("MCMXCIV"))
Comment

python roman to integer

def roman_to_int(roman:str) -> int:
    romans = {
        "I": 1,
        "V": 5,
        "X": 10,
        "L": 50,
        "C": 100,
        "D": 500,
        "M": 1000
    }
    result = 0
    
    # Single digit number
    if len(roman) < 2:
        return romans[roman.upper()]
      
    # Iterate the string only once -> O(n)
    for i in range(len(roman)-1):
        current_num = romans[roman[i].upper()]
        next_num = romans[roman[i+1].upper()]
        if current_num < next_num:
            result -= current_num
        else:
            result += current_num
    else:  # Add the last number
        result += next_num

    return result
Comment

roman to integer python

def romanToInt(rm_letter):
    roman = {'I':1,'V':5,'X':10,'L':50,'C':100,'D':500,'M':1000,'IV':4,'IX':9,'XL':40,'XC':90,'CD':400,'CM':900}
    i = 0
    num = 0
    while i < len(rm_letter):
        if i+1<len(rm_letter) and rm_letter[i:i+2] in roman:
            num+=roman[rm_letter[i:i+2]]
            i+=2
        else:

            num+=roman[rm_letter[i]]
            i+=1
    return num

roman = input("Enter roman letter: ").upper()
roman=romanToInt(roman)
print(roman)
Comment

Roman to integer with python

def romanToInt(self, s: str) -> int:
    roman = {"I": 1, "V": 5, "X": 10, "L": 50, "C": 100, "D": 500, "M": 1000}
    result = 0

    for i in range(len(s)):
        if i + 1 < len(s) and roman[s[i]] < roman[s[i+1]]:
            result -= roman[s[i]]
        else: 
            result += roman[s[i]]
    return result
Comment

Python Roman to Integer method 2

class Solution:
    def romanToInt(self, s):
 
        values = {'I': 1, 'V': 5, 'X': 10, 'L' : 50, 'C' : 100, 'D' : 500, 'M' : 1000}   
        result = 0
        for i in range(len(s)):
            if i + 1 == len(s) or values[s[i]] >= values[s[i + 1]] : # if current item is not the last item on the string
                                                                    # or current item's value is greater than or equal to next item's value 
                result = result + values[s[i]]                      # then add current item's value from result
            else:
                result = result - values[s[i]]                      # otherwise subtract current item's value from result
        return result

Task = Solution()
print(Task.romanToInt("III"))
print(Task.romanToInt("LVIII"))
print(Task.romanToInt("MCMXCIV"))
Comment

PREVIOUS NEXT
Code Example
Python :: read file line by line into list 
Python :: height width image opencv 
Python :: Convert the sklearn.dataset cancer to a DataFrame. 
Python :: pyyaml install 
Python :: pylint no name in module cv2 
Python :: remove web linnks from string python 
Python :: python reference script directory 
Python :: python split path at level 
Python :: how to receive password using tkinter entry 
Python :: créer des variable dynamiques python 
Python :: how to plot roc curve in python 
Python :: how to send whatsapp message with python 
Python :: autoclicker in python 
Python :: sklearn minmaxscaler pandas 
Python :: seaborn pairplot label rotation 
Python :: show jpg in jupyter notebook 
Python :: remove non-alphabetic pandas python 
Python :: bmi python 
Python :: os get current directory 
Python :: transpose a matrix using list comprehension 
Python :: how to extract data from website using beautifulsoup 
Python :: python turtle square 
Python :: how to remove coma in python 
Python :: how to make it so the pygame window will close 
Python :: python pip version check 
Python :: dataframe to list 
Python :: how to convert a am pm string to 24 hrs time python 
Python :: how to apply logarithm in pandas dataframe 
Python :: business logic in django 
Python :: python code to drop columns from dataframe 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =