482.密匙格式化
作者:互联网
class Solution
{
public:
string licenseKeyFormatting(string S, int K) {
string s;
s = "";
int cnt = 0;
for (int i = S.size()-1; i >= 0; i--)
{
if (S[i] == '-')
continue;
else
{
if (cnt&&cnt%K == 0)
{
s += '-' ;
cnt = 0;
}
char t = toupper(S[i]);
s+= t;
cnt++;
}
}
reverse(s.begin(), s.end());
return s;
}
};
小蛋白是我的最爱 发布了163 篇原创文章 · 获赞 1 · 访问量 5369 私信 关注
标签:私信,cnt,格式化,string,int,密匙,cnt%,文章,482 来源: https://blog.csdn.net/weixin_40823740/article/details/104089031