Roman to Integer
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
Solution
public class Solution {
    public int romanToInt(String s) {
        int result = 0;
        for (int i = 0; i < s.length(); i ++){
            if (i > 0 && convert(s.charAt(i-1)) < convert(s.charAt(i)))
                result = result - 2* convert(s.charAt(i-1)) + convert(s.charAt(i));
            else
                result += convert(s.charAt(i));
        }
        return result;
    }
    public int convert(char s){
        switch (s){
            case 'I': return 1;
            case 'V': return 5;
            case 'X': return 10;
            case 'L': return 50;
            case 'C': return 100;
            case 'D': return 500;
            case 'M': return 1000;
            default: return 0;
        }
    }
}