当前位置:网站首页>力扣每日一题
力扣每日一题
2022-08-05 07:31:00 【小唐学姐】
给你一个字符串 columnTitle ,表示 Excel 表格中的列名称。返回 该列名称对应的列序号 。
例如:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
...
示例 1:
输入: columnTitle = "A"
输出: 1
示例 2:
输入: columnTitle = "AB"
输出: 28
示例 3:
输入: columnTitle = "ZY"
输出: 701
提示:
1 <= columnTitle.length <= 7
columnTitle 仅由大写英文组成
columnTitle 在范围 ["A", "FXSHRXW"] 内
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/excel-sheet-column-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
public int titleToNumber(String s) {
int res=0;
int len=s.length();
int i=0;
while(i<len){
res*=26;
res+=(s.charAt(i)-'A')+1;
i++;
}
return res;
}
}
边栏推荐
猜你喜欢
Bluetooth gap protocol
MVCC of Google's Fragmented Notes (Draft)
400 times performance improvement 丨 swap valuation optimization case calculation
Flink Learning 12: DataStreaming API
风控特征的优化分箱,看看这样教科书的操作
Flink Learning 10: Use idea to write WordCount and package and run
Mysql为什么 建立数据库失败
学习机赛道加速:请“卷”产品,不要“卷”营销
Game Thinking 19: Multi-dimensional calculation related to games: point product, cross product, point-line-surface distance calculation
re正则表达式
随机推荐
监听浏览器刷新操作
4520. 质数
ARM Cortex-M上的Trace跟踪方案
图扑软件与华为云共同构建新型智慧工厂
【Dynamic type detection Objective-C】
Redis常用命令
TCP sticky packet unpacking problem + solution
window.open 全屏展示
v-if/v-else根据计算判断是否显示
Chapter3、色调映射
re正则表达式
游戏模拟器成了外挂帮凶,灰产对抗再升级
Week 8 Document Clustering
After the firewall iptable rule is enabled, the system network becomes slow
Stored procedure writing experience and optimization measures
Shiny02---Shiny exception solution
openSource 知:社区贡献
MySQL:连接查询 | 内连接,外连接
C-Eighty seven(背包+bitset)
C# FileSystemWatcher