题解 2869: 字符串最大跨距

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2869: 字符串最大跨距

摘要:解题思路:注意事项:参考代码:l = list(input().strip().split(","))a = l[0].find(l[1])b = l[0].rfind(l[2])if a != -1……

2869: 字符串最大跨距

摘要:解题思路:注意事项:参考代码:S, S1, S2 = map(str, input().split(",")) if S.find(S1) == -1 or S.find(S2) == -1:  ……

2869: 字符串最大跨距

摘要:解题思路:注意事项:参考代码:s,s1,s2 = input().strip().split(",") if s1 in s and s2 in s:     a = s.index(s1)  ……