Leetcode#171. Excel Sheet Column Number(Excel 테이블 열 번호 - 진수 변환)

제목


Related to question Excel Sheet Column Title
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:

    A -> 1
    B -> 2
    C -> 3
    ...
    Z -> 26
    AA -> 27
    AB -> 28 

제목


간단한 문제.26진수를 10진수로 변환

파이썬 언어

class Solution(object):
    def titleToNumber(self, s):
        """
        :type s: str
        :rtype: int
        """
        temp="0ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        n = 0;
        for i in range(0, len(s)):
            n = n * 26 + temp.index(s[i]);
        return n;


C++ 언어

class Solution {
public:
    int titleToNumber(string s) {
        string temp="0ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        int n = 0;
        for(int i=0; i26 + temp.find(s[i]);
        }
        return n;
    }
};

좋은 웹페이지 즐겨찾기