会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
zihao,wang
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
2019年3月15日
camelcase-hankerrank
摘要: int camelcase(string s) { int cnt=0; int a; for(int i=0;i<s.size();i++) { a=s[i]; if(65<=a&&a<=90) { cnt++; } } cnt++; return cnt; } int camelcase(str
阅读全文
posted @ 2019-03-15 22:16 zihao,wang
阅读(111)
评论(0)
推荐(0)
编辑
superReducedString-hankerrank
摘要: Steve has a string of lowercase characters in range ascii[‘a’..’z’]. He wants to reduce the string to its shortest length by doing a series of operati
阅读全文
posted @ 2019-03-15 21:30 zihao,wang
阅读(106)
评论(0)
推荐(0)
编辑
公告