当前位置:网站首页>力扣 2315.统计星号
力扣 2315.统计星号
2022-07-07 17:53:00 【Tomorrowave】
2315.统计星号
给你一个字符串 s ,每 两个 连续竖线 ‘|’ 为 一对 。换言之,第一个和第二个 ‘|’ 为一对,第三个和第四个 ‘|’ 为一对,以此类推。
请你返回 不在 竖线对之间,s 中 ‘*’ 的数目。
注意,每个竖线 ‘|’ 都会 恰好 属于一个对。
示例 1:
输入:s = “l|eet|co|*de|"
输出:2
解释:不在竖线对之间的字符加粗加斜体后,得到字符串:"l|eet|co|*de|” 。
第一和第二条竖线 ‘|’ 之间的字符不计入答案。
同时,第三条和第四条竖线 ‘|’ 之间的字符也不计入答案。
不在竖线对之间总共有 2 个星号,所以我们返回 2 。
思路:
匹配
代码部分
class Solution(object):
def countAsterisks(self, s):
""" :type s: str :rtype: int """
cnt=0
c=0
for i in s:
if i=='|':
cnt+=1
elif cnt%2==0 and i=='*':
c+=1
return c
边栏推荐
- 时间工具类
- A pot of stew, a collection of common commands of NPM and yarn cnpm
- 841. 字符串哈希
- gorilla官方:golang开websocket client的示例代码
- 开源重器!九章云极DataCanvas公司YLearn因果学习开源项目即将发布!
- 【Confluence】JVM内存调整
- 关于自身的一些安排
- 编译器优化那些事儿(4):归纳变量
- Le PGR est - il utile au travail? Comment choisir une plate - forme fiable pour économiser le cœur et la main - d'œuvre lors de la préparation de l'examen!!!
- R language ggplot2 visualization: use the ggecdf function of ggpubr package to visualize the grouping experience cumulative density distribution function curve, and the linetype parameter to specify t
猜你喜欢
Nunjuks template engine
Flink并行度和Slot详解
openEuler 有奖捉虫活动,来参与一下?
多个线程之间如何协同
J ü rgen schmidhub reviews the 25th anniversary of LSTM papers: long short term memory All computable metaverses. Hierarchical reinforcement learning (RL). Meta-RL. Abstractions in generative adversar
el-upload上传组件的动态添加;el-upload动态上传文件;el-upload区分文件是哪个组件上传的。
华南X99平台打鸡血教程
Cloud 组件发展升级
Openeuler prize catching activities, to participate in?
九章云极DataCanvas公司摘获「第五届数字金融创新大赛」最高荣誉!
随机推荐
mysql 的一些重要知识
R语言ggplot2可视化:使用ggpubr包的ggstripchart函数可视化分组点状条带图(dot strip plot)、设置position参数配置不同分组数据点的分离程度
What does "true" mean
论文解读(ValidUtil)《Rethinking the Setting of Semi-supervised Learning on Graphs》
841. String hash
R language ggplot2 visualization: use the ggdensity function of ggpubr package to visualize the packet density graph, and use stat_ overlay_ normal_ The density function superimposes the positive dist
开源重器!九章云极DataCanvas公司YLearn因果学习开源项目即将发布!
时间工具类
Openeuler prize catching activities, to participate in?
多个线程之间如何协同
Interpretation of transpose convolution theory (input-output size analysis)
“本真”是什么意思
浏览积分设置的目的
Welcome to the markdown editor
爬虫实战(七):爬王者英雄图片
Compiler optimization (4): inductive variables
JVM 类加载机制
Visual Studio 插件之CodeMaid自动整理代码
openEuler 有奖捉虫活动,来参与一下?
线性基