171. Excel Sheet Column Number

问题描述

解决方案

class Solution {
public:
    int titleToNumber(string s) {
        return accumulate(s.begin(),s.end(),0,[](int sum,char cr){return 26*sum+cr-'A'+1;});
    }
};          
posted @ 2016-08-17 14:47  弦断  阅读(136)  评论(0编辑  收藏  举报