Roman Number to Integer
Question – Given a string in roman no format (s) your task is to convert it to an integer. Various symbols and their values are given below.I 1V 5X 10L 50C 100D 500M 1000 Example Give Input: s = V Expected…
Question – Given a string in roman no format (s) your task is to convert it to an integer. Various symbols and their values are given below.I 1V 5X 10L 50C 100D 500M 1000 Example Give Input: s = V Expected…
Problem Statement – Given a positive integer, return its corresponding column title as appear in an Excel sheet. Excel columns has a pattern like A, B, C, … ,Z, AA, AB, AC,…. ,AZ, BA, BB, … ZZ, AAA, AAB …..…