张鹏201908190005840
张鹏201908190005840
全部文章
题解
归档
标签
去牛客网
登录
/
注册
张鹏201908190005840的博客
全部文章
/ 题解
(共24篇)
题解 | #字符串旋转#
s=input().strip() p='' c=1 for i in range(len(s)): if len(s)>=2: if i+1<len(s) and s[i]==s[i+1]: c+=1 else: ...
Python3
2022-02-11
0
317
题解 | #字符串旋转#
l= input().strip().split(';') def check_process(a,b): if len(a)>=2 and list(a).sort()==list(b).sort() : for i in range(1,len(a)): ...
Python3
2022-02-11
0
331
题解 | #正则匹配#
import re line=input().strip().split(' ') print(1 if re.search(f"^{line[1]}$" if line[1].isalpha() else line[1],line[0]) else 0)
Python3
2022-02-11
0
315
题解 | #计算某字符出现次数#
使用python字符串函数计算某字符串出现次数: import sys a,b=[i.strip() for i in sys.stdin] print(a.lower().count(b.lower()))
Python3
2022-02-10
15
3857
首页
上一页
1
2
3
下一页
末页