We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题链接: https://leetcode.cn/problems/excel-sheet-column-number/
解题思路:
321
result = 3 * 10^2 + 2 * 10^1 + 1 * 10^0
function titleToNumber(columnTitle: string): number { let result: number = 0 // 缓存结果 let baseCode: number = 'A'.charCodeAt(0) // 缓存A的Code,用于计算26个英文字母的Code // 生成一个哈希表,缓存26个字母对应的数字 let map: Map<string, number> = new Map( Array.from({ length: 26 }, (item, index) => [ String.fromCharCode(baseCode + index), index + 1, ]), ) // i代表当前位的值,j代表26的j次幂 // i和j相当于两个指针,分别从两端向中间推进 // 按照计算式,不断累加result即可 for ( let i = 0, j = columnTitle.length - 1; i < columnTitle.length; i++, j-- ) { result += map.get(columnTitle[i]) * Math.pow(26, j) } return result };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:
https://leetcode.cn/problems/excel-sheet-column-number/
解题思路:
321
,计算式为:result = 3 * 10^2 + 2 * 10^1 + 1 * 10^0
。The text was updated successfully, but these errors were encountered: