171. Excel Sheet Column Number

public class Solution {
    public int titleToNumber(String s) {
        int len=s.length();
        int res=0;
        for(int i=0;i<len;i++)
        {
            res=res*26;
            res+=((s.charAt(i)-'A')+1);
        }
        return res;
    }
}

 

posted @ 2016-04-03 11:30  阿怪123  阅读(127)  评论(0编辑  收藏  举报