Given a column title as appear in an Excel sheet, return its corresponding column number.java
For example:git
A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -> 28 ...
Example 1:github
Input: "A" Output: 1
Example 2:app
Input: "AB" Output: 28
Example 3:测试
Input: "ZY" Output: 701
实现:3d
测试:excel
输出:code
题目地址:https://leetcode.com/problems/excel-sheet-column-number/blog
代码:https://github.com/woshiyexinjie/leetcode-xin/tree/master/src/main/java/com/helloxin/leetcode/algorithmsleetcode