ForHeart
ForHeart
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ForHeart的博客
TA的专栏
153篇文章
31人订阅
进阶高级测试工程师
142篇文章
1443人学习
AI自动测试化入门到精通
11篇文章
912人学习
全部文章
(共156篇)
题解 | #查找两个字符串a,b中的最长公共子串#
from re import I import sys while True: try: str1 = input() str2 = input() n1,n2 = len(str1),len(str2) if n1 > ...
2023-11-06
0
198
题解 | #参数解析#
import sys while True: try: a= input().split(' ') n = len(a) cnt =0 b='' c=[] start='"' ...
2023-11-06
0
201
题解 | #公共子串计算#
import sys while True: try: str1 = input().strip() str2 = input().strip() n1 = len(str1) n2 = len(str2) c...
2023-11-06
0
246
题解 | #在字符串中找出连续最长的数字串#
while True: try: a = input().strip() na = len(a) b =[] nb =0 cnt=0 cnt1=0 for c in a: ...
2023-11-06
0
218
题解 | #求解立方根#
while True: try: a = float(input().strip()) epsilon = 0.0001 low = min(-1, a) high = max(1, a) ans = (low ...
2023-11-06
0
218
题解 | #MP3光标位置#
import sys while True: try: n = int(input().strip()) command = list(input().strip()) b = [i for i in range(1,n+1)] ...
2023-11-06
0
243
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页