public class Solution { public int romanToInt(String s) { int len=s.length(); int len1=len-1; int sum=0; int[] nums = new int[len]; for(int i=0;i