-
Roman to Integer
Leetcode qs.13Python code solution and explanation question Given a roman numeral, convert it to an integer. Example Input: s = “MCMXCIV” Output: 1994 Explanation: M = 1000, CM = 900, XC = 90 and IV = 4. thoughts Once you’ve understood the question, what we basically need to do is find a way to tell…
-
Climbing Stairs
