Problem
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 ...
Example 1:
Input: "A" Output: 1
Example 2:
Input: "AB" Output: 28
Example 3:
Input: "ZY" Output: 701Solution
class Solution { public int titleToNumber(String s) { Mapmap = new HashMap<>(); int i = 1; for (char ch = "A"; ch <= "Z"; ch++) { map.put(ch, i++); } int res = 0; for (char ch: s.toCharArray()) { res = res*26+map.get(ch); } return res; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/72039.html
摘要:进制复杂度时间空间思路得到数字,其实就是把进制的数转换为进制的数。算法就是基本的进制转换方法,从后往前第位的值乘上。不过因为是,而不是,相当于进制的数都整体减,才能对应上从开始的十进制数。 Excel Sheet Column Number Related to question Excel Sheet Column Title Given a column title as app...
摘要:微信公众号记录截图记录截图目前关于这块算法与数据结构的安排前。已攻略返回目录目前已攻略篇文章。会根据题解以及留言内容,进行补充,并添加上提供题解的小伙伴的昵称和地址。本许可协议授权之外的使用权限可以从处获得。 Create by jsliang on 2019-07-15 11:54:45 Recently revised in 2019-07-15 15:25:25 一 目录 不...
Problem 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 Solution ...
摘要:月下半旬攻略道题,目前已攻略题。目前简单难度攻略已经到题,所以后面会调整自己,在刷算法与数据结构的同时,攻略中等难度的题目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道题,目前已攻略 100 题。 一 目录 不折腾的前端,和咸鱼有什么区别...
摘要:在线网站地址我的微信公众号完整题目列表从年月日起,每天更新一题,顺序从易到难,目前已更新个题。这是项目地址欢迎一起交流学习。 这篇文章记录我练习的 LeetCode 题目,语言 JavaScript。 在线网站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公众号: showImg(htt...
阅读 690·2023-04-25 19:40
阅读 3363·2023-04-25 17:41
阅读 2963·2021-11-11 11:01
阅读 2488·2019-08-30 15:55
阅读 3187·2019-08-30 15:44
阅读 1322·2019-08-29 14:07
阅读 450·2019-08-29 11:23
阅读 1277·2019-08-27 10:54